gpt4 book ai didi

python - 为什么 pandas.read_excel 不能运行?

转载 作者:行者123 更新时间:2023-12-05 00:50:16 27 4
gpt4 key购买 nike

我正在尝试使用 pandas.read_excel,但我在终端中不断收到“'module' object has no attribute 'read_excel'”作为错误,如图所示

  File "read.py", line 9, in <module>
cols = pd.read_excel('laucnty12', 'Poverty Data', index_col='State', \\ na_values=['NA'])
AttributeError: 'module' object has no attribute 'read_excel'

我已经尝试过 pd.read_excel() 和 pd.io.parsers.read_excel() 但得到了同样的错误。我安装了 python 2.7,pandas 的其他部分工作正常,例如 xls.parse 和 read_csv。我的代码如下:

import pandas as pd
from pandas import *

xls = pd.ExcelFile('laucnty12.xls')
data = xls.parse('laucnty12', index_col=None, na_values=['NA'])
cols = pd.read_excel('laucnty12', 'Poverty Data', index_col='State', na_values=['NA'])

print cols

最佳答案

df = pd.read_excel(filepath + 'Result.xlsx')

检查excel文件的扩展名是xls还是xlsx,然后在查询中添加相同的。我试过了,它现在工作正常。

关于python - 为什么 pandas.read_excel 不能运行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21947813/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com