当前位置:   article > 正文

AttributeError: module 'numpy' has no attribute 'dtype' 问题

module 'numpy' has no attribute 'dtype

记录下今天发生的问题。

在pycharm中命名了一个random.py,代码如下

import numpy as np
import pandas as pd

RandomNumber = np.random.choice([1,2,3,4,5],size=100,replace=True,p=[0.1,0.2,0.3,0.3,0.1])

print(pd.Series(RandomNumber).value_counts())

然后执行出现了

  File "pandas/_libs/src\numpy.pxd", line 157, in init pandas._libs.tslib

AttributeError: module 'numpy' has no attribute 'dtype' 

报错信息。

纳闷了,代码怎么在命令行可以执行,在ide执行不了。

后来改了个文件名称,改为RandomNum.py就可以执行了。

因为对python不是很了解,所以不知道具体原因,猜想是因为文件名与函数名冲突了。

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/518957
推荐阅读
相关标签
  

闽ICP备14008679号