问答详情
源自:2-2 ndarray

报错模块“NUMPY”没有属性“数组”

#encoding=utf-8 import numpy as np a=[[1,3,5],[2,4,6]] print(type(a)) b=np.array(a) print(type(b)) 为什么我写了代码,运行的时候报错? AttributeError: module 'numpy' has no attribute 'array'

提问者:慕粉2220431277 2018-04-22 21:41

个回答

  • 浮叶
    2018-04-23 15:45:05

    我用你的代码运行了,没有报错呢