gpt4 book ai didi

python - 函数全局/局部变量更新问题

转载 作者:行者123 更新时间:2023-12-03 23:08:26 26 4
gpt4 key购买 nike

有人能指出为什么这个函数没有输出吗?请解释并举例说明。我只是无法弄清楚这个问题。

def double(lst):

count=0
result='Found'
lsy=[count,result]

for i in lst:
word=i
if 'mm' in word:
result='Found'
count=0
break
if 'nn' in word:
result='None'
count+=1

return lsy

double(['Ammy','Timmy','Jimmy'])

最佳答案

result = double(['Ammy','Timmy','Jimmy'])
print(result)
# [0, 'Found']

关于python - 函数全局/局部变量更新问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60741200/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com