python——如何让循环从“开始”;第一天;?
发布时间:2022-04-25 15:30:13 426
相关标签: # node.js
所以我试着从第一天开始做一个列表,然后继续,但是每次我运行代码时,它都从用户输入的日期开始。这可能是一个简单的解决办法,但我被难倒了。任何帮助都将不胜感激!
orig = int(input("Enter the starting number of organisms: "))
days = int(input("Enter the number of days: "))
increase = float(input("Enter the daily population increase: "))
for i in range(days):
orig = orig * (1 + increase)
days = days + 1
print(f'After {days} days there are {orig:.6f} organisms')
特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报