当前位置:主页 > 软件编程 > Python代码 >
时间:2021-05-11 08:53:54 | 栏目:Python代码 | 点击:次
实例如下所示:
# TODO 返回矩阵的行数和列数 def shape(M): return len(M),len(M[0])