stopword = ''
L=[]
for line in iter(raw_input, stopword):
L.append(map(int,line.split(" ")))
从python端输入未知行数的数据
最新推荐文章于 2025-01-10 11:18:44 发布
stopword = ''
L=[]
for line in iter(raw_input, stopword):
L.append(map(int,line.split(" ")))