📜  如何在 python 代码示例中使用 map 输入矩阵

📅  最后修改于: 2022-03-11 14:46:35.879000             🧑  作者: Mango

代码示例1
s = 3
a = []
for i in range(s):
    res = list(map(int, input().split(' ')))
    a.append(res)
print(a)