Question: Write a function called get_longest(). Given a list, get_longest() returns the length of the longest string in the given list. Notes: It should return 0

Write a function called get_longest().

Given a list, get_longest() returns the length of the longest string in the given list.

Notes:

  • It should return 0 if the list is empty.

output = get_longest(['one', 'two', 'three'])

print(output) # --> 5

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!