id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

longest_str


you have a list of strings. return the longest string. if there is a tie, return the longest string last encountered.


longest_str(['aaa', 'bbb', 'cccc']) → 'cccc'
longest_str([' ', 'a']) → 'a'
longest_str(['asdf', 'movie']) → 'movie'

...Save, Compile, Run (ctrl-enter)

def longest_str(list):

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Python Help

Difficulty: 100

Copyright Nick Parlante 2017 - privacy