How to take input matrix from user in python?

Question : How to take input matrix from user in python? Answer : #Python program to take input matrix from user in python import numpy as np m=input("Enter number of rows:") n=input("number of columns:") m=int(m) n=int(n) A=np.array([[0]*n]*m) for i in…

This Question has been answered. 

Please Login or Register to See The Answer