AttributeError: 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不是很了解,所以不知道具体原因,猜想是因为文件名与函数名冲突了。

你可能感兴趣的:(python)