我的目标是让这段代码返回插入单词的长度。
def word_length( word ):
word = 0
for x in word:
int(x) += 1
return result
文件" [用户代码]",第4行语法错误:无法分配给功能 调用
答案 0 :(得分:0)
不确定您尝试使用int(x)
做什么我认为这是你正在尝试做的事情:
def word_length(word):
count = 0
for x in word:
count += 1
return count
word_length('Hello')
Out[8]: 5
编辑:虽然,您可以在不编写自己的功能的情况下执行此操作
In[1]: len('Hello')
Out[1]: 5
答案 1 :(得分:0)
def word_length( word ):
i = 0
for x in word:
i += 1
return i