gpt4 book ai didi

python - 将for循环转换为python3中的递归函数

转载 作者:太空宇宙 更新时间:2023-11-04 04:53:21 25 4
gpt4 key购买 nike

是否可以转换以下循环:

c = 0
for a in find:
c += 1
return c

在哪里可以找到一个像[a,b,c,d]这样的列表到一个使用递归不使用外部库的函数?

最佳答案

def count(ls):
if not ls: # empty
return 0
return count(ls[1:]) + 1

像这样使用它:

>>> find = [a, b, c, d]
>>> count(find)
4

关于python - 将for循环转换为python3中的递归函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47671254/

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