[TOC]
数组python定义二维数组时不能用 [ [ 0 ]* m]* m 创建,可以采用:
smat = np.zeros((m, m))
或者:
arr = [[0 for i in range(n)] for j in rang
2021-08-26