先上代码吧:
import re
def my_read(filename,row,col):
# 读取各种矩阵----参数为文件名和目标矩阵的行列数
sz = [[0 for i in range(col)]for i i
2022-04-09