gpt4 book ai didi

python - 如何在 Python 的 For 循环中添加输入请求的数字?

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

我的作业是使用“For 循环”计算用户输入的一系列数字的总和,但我似乎无法成功添加输入数字。

我尝试打印保存循环重复的数字量的变量,并使用“1 + 2 + 3 + 4 + 5”之类的东西,但它要么在每次代码循环时打印,要么打印“15” “, 例如。这是代码:

listo = (1,2,3,4,5)

for num in range(len(listo)) :
float(input("Enter a number: "))
krab = #This is where I'm struggling, as I don't know how to add the inputted numbers.
print "Your total sum is" , krab

输出应该是每次循环的总和,因此如果输入的数字是,例如,5到10,程序应该打印“35”。

最佳答案

listo = [1,2,3,4,5] #or you can just do x=5

krab = 0.0

for n in range(len(listo)) : #range(0,x):

num = float(input("Enter a number: "))

krab = num + krab '''this will add the provided number with the present value of krab'''

print("Your sum is " , krab)

关于python - 如何在 Python 的 For 循环中添加输入请求的数字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55555041/

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