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
Get step-by-step solutions from verified subject matter experts
