python之矩阵相加:提示用户输入矩阵的行数n,再提示用户输入矩阵的列数m,接下来,提示用户输入 2*n*m 个数字(每次输入 一个数字)。输出 C=A+B。
代码:def func40(): n = int(input('Please input the number of rows:')) m = int(input('Please input the number of columns:')) lis1, lis2, lis3 = [], [], [] t1 = 0 while t1 < n: for j in range(0, m): a = int(input('