在不使用列表推导的情况下在python中进行多行输入?

时间:2017-09-29 16:57:29

标签: python list input

  

不知道“大小”如何进行多行输入并将其存储在列表中?

1
2
3
4  

>   list=[]
>   size=int(input())
>   for i in range(size):
>      list.append(int(input()))

1 个答案:

答案 0 :(得分:0)

result = []
while True:
    item = input()
    if not item:
        break
    result.append(int(item))