print(lst.transpose()) #transpose
AttributeError: 'list' object has no attribute 'transpose'
import numpy as np lst = np.array([[1., 2.], [3., 4.]]) print(lst.transpose())
你可能是第二步没有做?
import numpy as np lst = np.array([[1., 2.], [3., 4.]]) print(lst.transpose())
你可能是第二步没有做?
这个要怎么解决呢
没有导入相应的包