Answers for "how to take input a matrix using map in python"

0

how to take input a matrix using map in python

s = 3
a = []
for i in range(s):
    res = list(map(int, input().split(' ')))
    a.append(res)
print(a)
Posted by: Guest on August-07-2021

Code answers related to "how to take input a matrix using map in python"

Python Answers by Framework

Browse Popular Code Answers by Language