The quiz where the difficulty automagically adapts to the player's Python knowledge
This is a question page. You can use this page to bookmark a question. Start a new quiz!
Question #950
my_list = "7 77 55 2345"
my_second_list = my_list.split()
print(max(my_second_list))
The split() methods returns a string. Hence the right answer is 77 . (w3schools.com/python/ref_string_split.asp)
Question difficulty: 🔵🔵🔵🔵🔵
Similar questions: