I'm a python beginner and I have a question. I defined:
s = 'Manchester united is the best football team'
l = s.split(' ')
max(l)
The final answer was united
, but I expected it should have been Manchester
, because: len(l[0]) = 10
and len(l[1]) = 6
.
Is there someone to answer my question?