2
def word(longest):
max_length = 0;
words = longest.split(" ")
for x in words:
if len(words[x]) > max_length:
max_length = len(words[x])
return max_length
word("Hello world")
確切的錯誤:爲什麼我在python中得到這個代碼的類型錯誤?
TypeError: list indices must be integers, not str
林仍然是一個在這個所以請,沒有意思的意見小白。
x是的話,在你的名單的話不是字的位置 – Keatinge