Python之pandas模块报错修复

AttributeError: partially initialized module 'pandas' has no attribute 'DataFrame' (most likely due to a circular import)

PandasPython 语言的一个扩展程序库,用于数据分析。但是今天在使用pandas导出数据时,发现它报错了:

1
AttributeError: partially initialized module 'pandas' has no attribute 'DataFrame' (most likely due to a circular import)

经过研究发现它是由于我把同目录下的另一个测试程序改名为pandas.py导致的,然后修改了那个程序后,问题解决。

参考文章