Python一次性输入输出多个数据

##1.一行输入多个数字
a, b, c = map(int, input().split())

##2.一行输入多个字符串
a, b, c = input().split()

##3.一行输出多个数值
print(a, b, c, end = ' ')

##4.一行输入列表(一维数组)
lst = list(map(int, input().split()))

运行结果:

Python一次性输入输出多个数据_第1张图片

##5.输入n行列表(二维数组)
l = []
for i in range(n):
    l.append(list(map(int, input().split())))

运行结果:

 

 

你可能感兴趣的:(python)