我被分配给我的练习要求(通过输入功能)要求价格并重复此输入7次。然后,我需要总结用户输入的数字,并且我对我应该前进的方向感到有点困惑。
for in range(7):
input("What is the price? "
答案 0 :(得分:0)
total = 0
for i in range(7):
total += int(input("What is the price? "))
答案 1 :(得分:0)
你可以这样做:
[0] "Text 123 and more Text"
[1] "THIS IS MORE TEXT"
答案 2 :(得分:-1)
你走在正确的轨道上。将总数存储在您定义的变量中,并从0开始。它看起来像这样:
total = 0
for i in range(7):
total += float(input("What is the price? "))
每次我们获得输入时,它的值都会被添加到总数中。请注意,如果您知道数字是整数,则可以使用int而不是float。