问答详情
源自:2-5 numpy矩阵操作与线性方程组

这个Error是怎么回事?

print(lst.transpose()) #transpose

AttributeError: 'list' object has no attribute 'transpose'


提问者:慕先生4075859 2019-05-29 07:21

个回答

  • weixin_慕雪8055451
    2019-09-26 19:50:53

    import numpy as np
    
    lst = np.array([[1., 2.],
                    [3., 4.]])
                    
    print(lst.transpose())

    你可能是第二步没有做?

  • weixin_慕雪8055451
    2019-09-26 19:50:40

    import numpy as np
    
    lst = np.array([[1., 2.],
                    [3., 4.]])
                    
    print(lst.transpose())

    你可能是第二步没有做?

  • 火焰腾空
    2019-06-05 15:04:35

    这个要怎么解决呢

  • 驶向远方_0
    2019-06-02 16:52:34

    没有导入相应的包