Python:在while循环中添加值

igetnqfo  于 2023-01-10  发布在  Python
关注(0)|答案(2)|浏览(148)

使用while循环,我提示用户输入5个不同的数字,并试图创建这些数字的总和。我如何才能创建这个总和呢?
这是目前为止我的代码

count = 1

while count < 5:
    count += 1
    int(input("Enter a value: "))
pkln4tw6

pkln4tw61#

count = 1
total = 0

while count < 5:
    count += 1
    total += int(input("Enter a value: "))

print (total)
4szc88ey

4szc88ey2#

这是一个更小的解决方案,并且使用了for循环

total = 0
for i in range(5):
        total += int(input("Enter Value : "))
print(f'Your Total is : {total}')

相关问题