result = [[sum(a*b for a,b in zip(matrix1_row,matrix2_col)) for matrix2_col in zip(*matrix2)] for matrix1_row in matrix1]
outf = open("multimatrix.txt", "w")
outf.write(str(result)[1:-1])
outf.close()
这在输出文件中给了我 [1750, 1029], [2252, 754] 但是我希望它看起来像这样
1750 1029
2252 754
我猜是因为我做矩阵乘法的方式但是我不能让 numpy 在 thonny 工作