pandas读取excel报错
使用pandas读取excel出错了,删库重装了好多次不知道错哪里了pandas.read_excel('./qt设计师/MLM/excel/介绍人.xls')
Traceback (most recent call last):
File "<input>", line 1, in <module>
File "C:\Users\Jacky cheung\.conda\envs\untitled1\lib\site-packages\pandas\util\_decorators.py", line 296, in wrapper
return func(*args, **kwargs)
File "C:\Users\Jacky cheung\.conda\envs\untitled1\lib\site-packages\pandas\io\excel\_base.py", line 334, in read_excel
mangle_dupe_cols=mangle_dupe_cols,
File "C:\Users\Jacky cheung\.conda\envs\untitled1\lib\site-packages\pandas\io\excel\_base.py", line 926, in parse
**kwds,
File "C:\Users\Jacky cheung\.conda\envs\untitled1\lib\site-packages\pandas\io\excel\_base.py", line 517, in parse
output = parser.read(nrows=nrows)
File "C:\Users\Jacky cheung\.conda\envs\untitled1\lib\site-packages\pandas\io\parsers.py", line 1198, in read
ret = self._engine.read(nrows)
File "C:\Users\Jacky cheung\.conda\envs\untitled1\lib\site-packages\pandas\io\parsers.py", line 2591, in read
data = self._convert_data(data)
File "C:\Users\Jacky cheung\.conda\envs\untitled1\lib\site-packages\pandas\io\parsers.py", line 2661, in _convert_data
clean_dtypes,
File "C:\Users\Jacky cheung\.conda\envs\untitled1\lib\site-packages\pandas\io\parsers.py", line 1830, in _convert_to_ndarrays
values, set(col_na_values) | col_na_fvalues, try_num_bool
File "C:\Users\Jacky cheung\.conda\envs\untitled1\lib\site-packages\pandas\io\parsers.py", line 1891, in _infer_types
na_count = isna(result).sum()
File "C:\Users\Jacky cheung\.conda\envs\untitled1\lib\site-packages\numpy\core\_methods.py", line 47, in _sum
return umr_sum(a, axis, dtype, out, keepdims, initial, where)
TypeError: int() argument must be a string, a bytes-like object or a number, not '_NoValueType'
xls能分享一下吗,代码也发一下吧。 pandas.read_excel('./qt设计师/MLM/excel/介绍人.xls')
Traceback (most recent call last): #看最前面
File "<input>", line 1, in <module> #错误在第1行
#看最后面,类型错误:int() 函数参数必须是字符串,类似字节的对象或数字,而不是'_NoValueType'
TypeError: int() argument must be a string, a bytes-like object or a number, not '_NoValueType' 把xls另存为xlsx试试。 suchocolate 发表于 2020-11-25 19:47
xls能分享一下吗,代码也发一下吧。
我是在pycharm中的python console中先导入pandas库然后再读取excel文件的只有一行pandas.read_excel('./qt设计师/MLM/excel/介绍人.xls')pandas版本是1.14,xlrd版本是1.2.0 roy_lz 发表于 2020-11-25 21:14
把xls另存为xlsx试试。
另存为xlsx读取也是同一个错误 笨鸟学飞 发表于 2020-11-25 20:04
pandas.read_excel('./qt设计师/MLM/excel/介绍人.xls')
Traceback (most recent call last): #看最 ...
我是在pyhton console中直接输入pd.read_excel('./ qtdesigner / MLM / excel /介绍人.xls')之后报错了,文件路径换为绝对路径也是同样的错误 不管是读啥表报错都是一样的{:10_266:} Jacky_cheung 发表于 2020-11-25 21:40
我是在pycharm中的python console中先导入pandas库然后再读取excel文件的只有一行pandas.read_excel('./q ...
文件和代码都发出来吧 suchocolate 发表于 2020-11-26 14:31
文件和代码都发出来吧
报错图片代码:http://pan-yz.chaoxing.com/share/info/a27d077925e4a4a7
xls文件: http://pan-yz.chaoxing.com/share/info/0bb6c26a70339e95 本帖最后由 suchocolate 于 2020-11-27 16:31 编辑
你的代码得发出来,不是报错信息,,我这里打开文件是没有问题的: suchocolate 发表于 2020-11-27 16:01
你的代码得发出来,不是报错信息,,我这里打开文件是没有问题的:
链接: http://pan-yz.chaoxing.com/share/info/2988f337fa2959f1
代码都是一样的{:10_266:}无论导入啥excel文件都报一样的错误 楼主解决没?遇到了一样的问题 没有{:10_243:},又重新建了一个虚拟环境,在重新安装相关库没有出现问题 2022.5.1 我也遇到了这个问题
用的IDE是spyder
解决方案是 重启IDE 本帖最后由 lhshfree 于 2022-5-2 08:17 编辑
huangjian17 发表于 2020-12-12 23:09
**** 作者被禁止或删除 内容自动屏蔽 ****
试试这个代码
data=pd.read_excel("d:/document/meal_order_detail1.xlsx",engine='openpyxl')
要用pip install openpyxl
出现了跟楼主同样现象。
同一代码,更换了新版本的pycharm,运行代码后这个异常。
可以试试这个操作。numpy的版本由原1.19.4改安装1.19.1
更新numpy版本后,代码跑出来正常。
页:
[1]