不知道用不用循环,用循环不知道怎么控制输入之间的间距,必须恰好n个数,因为是刚学,所以想了一天了
n = int(input()) s = "" for i in range(n):#这种是换行输入,可以控制输入多少行 s += input() print(s)