here is my function
def find_short(s):
s = s.split()
max = len(s[0])
for i in s:
if len(i) <= max:
max = i
return max
print(find_short("bitcoin take over the world maybe who knows perhaps"))
What is incorrect here?