如何输出python中list的维度 2023-01-31 03:01:22 python 输出 维度 import numpy as np a = [[1,2],[3,4]] print(np.array(a).shape) print(len(a), len(a[0])) 相关文章