不知道“大小”如何进行多行输入并将其存储在列表中?
1
2
3
4
> list=[]
> size=int(input())
> for i in range(size):
> list.append(int(input()))
答案 0 :(得分:0)
result = []
while True:
item = input()
if not item:
break
result.append(int(item))