r=int(input("enter rows:"))
c=int(input("enter collomn:"))
Mat=[]
for i in range(r):
R=[]
for j in range(c):
val=int(input("enter value to store at index["+str(i)+", " +str(j)+"]"))
R.append(val)
mat.append(R)
print("***matix***")
for i in range (r):
for j in range (c):
print(Mat[i][j],"\t", end='')
print()
Answers
Answered by
0
sorry I was try but you believe for me i am try
Similar questions
Computer Science,
4 months ago
Chemistry,
4 months ago
English,
9 months ago
Math,
1 year ago
English,
1 year ago