gpt4 book ai didi

python - 如何在循环中重复将特定值添加到变量?

转载 作者:太空宇宙 更新时间:2023-11-03 13:55:58 25 4
gpt4 key购买 nike

我正在尝试编写一个程序,将 0.165 添加到变量 weight。我试图重复这个 15 次。然而,重要的是 weight 不断增加到 0.165 15 次,例如13.365、13.53、13.495 等

我将如何做到这一点?抱歉,我对整个 Python 编码有点陌生,所以请指出我的代码中的任何多余错误。

   weight=int(input("Enter your weight"))
newweight=weight+1
othernewweight=newweight*0.165
count=['1','2','3','4','5','6','7','8','9','10','11','12','13','14','15']
for x in range(0,15):
print("year", count+0", "othernewweight+0.65")

最佳答案

这将要求您输入 float 类型的weight,然后重复将 0.165 添加到 weight 15 次

weight=float(input("Enter your weight"))

for x in range(15):
weight += 0.165
print (round(weight,3)) #to print 3 decimals

输出:

Enter your weight 13.2                                                                                                                                                              
13.365
13.53
13.695
13.86
14.025
14.19
14.355
14.52
14.685
14.85
15.015
15.18
15.345
15.51
15.675

关于python - 如何在循环中重复将特定值添加到变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55526850/

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