gpt4 book ai didi

python - 计算 Python 列表中正数的总和

转载 作者:太空宇宙 更新时间:2023-11-04 01:09:07 28 4
gpt4 key购买 nike

为考试而学习......这可能是一个问题,但我被卡住了,无法弄清楚我做错了什么。

def theSum(aList):
s = 0
for x in aList:
if x > 0:
s+=x
return theSum

最佳答案

您的逻辑似乎是正确的,但您的代码中存在一些缩进和变量错误。

你应该返回s,而不是返回函数本身:

def theSum(aList):
s = 0
for x in aList:
if x > 0:
s = s + x
return s

>>> print theSum([-1, 1, -2, 2])
3

关于python - 计算 Python 列表中正数的总和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28798812/

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