首页 > 解决方案 > python使用for循环将用户输入添加到空列表

问题描述

所以我想使用此代码将用户输入添加到一个空列表

no_of_num=int(input('enter the number of numbers you would like to add\n='))#this will store the number of numbers to be added 
list_of_num=[]#this list will store the number to be added
for i in range(0,no_of_num):#we will ask them for the input
    num=int(input('enter the number\n='))
    list_of_num.append(num)#this will keep adding the numbers to the list
result=sum_of_num(num)

但是当我尝试运行此代码时,它只是将用户输入的最后一个数字添加到列表中

标签: pythonpython-3.xpython-2.7

解决方案


@Ram Pandey 是正确的添加num,如果i尝试这个,它可以工作

for i in range(0,no_of_num):
    num=int(input('enter the number\n='))
    list_of_num.append(num)
print(sum(list_of_num))

推荐阅读