摘要: TypeError: 'tuple' object is not callable. import numpy as np a = np.ones([5,5]) print(a) print(type(a)) print(type(a.shape)) print(a.shape) ​ ##输出 #[ 阅读全文