arserWarning: Falling back to the ‘python‘ engine because the ‘c‘ engine does not support regex sepa

简介: arserWarning: Falling back to the ‘python‘ engine because the ‘c‘ engine does not support regex sepa

文章目录


原来的代码为:

df=read_csv('./rz10.csv',names=['YHM','DLSJ','TCSJ','YWXT','IP','REMARK'],sep=" ,")

报错如下:

image.png

解决方法:

追加一个参数:engine='python'

成功如下:

image.png

相关文章
|
6月前
|
机器学习/深度学习 算法 Python
Python高级算法——支持向量机(Support Vector Machine,SVM)
Python高级算法——支持向量机(Support Vector Machine,SVM)
397 2
|
4月前
|
开发者 Python
【Python】已解决:FutureWarning: The default value of regex will change from True to False in a future ver
【Python】已解决:FutureWarning: The default value of regex will change from True to False in a future ver
114 1
|
4月前
|
数据挖掘 Python
【Python】已解决 ImportError: Missing optional dependency ‘xlrd‘. Install xlrd >= 1.0.0 for Excel support
【Python】已解决 ImportError: Missing optional dependency ‘xlrd‘. Install xlrd >= 1.0.0 for Excel support
440 0
|
6月前
|
数据采集 自然语言处理 Python
Python RegEx
Python RegEx
25 0
|
6月前
|
Python
在Python中,如何使用`regex`库进行正则表达式匹配?
在Python中,如何使用`regex`库进行正则表达式匹配?
66 0
|
6月前
|
Python
Python 正则表达式(RegEx)指南
正则表达式(RegEx)是一系列字符,形成了一个搜索模式。RegEx 可用于检查字符串是否包含指定的搜索模式。
70 0
|
11月前
|
Python
python 自带 re bug 推荐使用 regex
python 自带 re bug 推荐使用 regex
58 0
|
Python
【python读取nc文件】报错:ValueError: unrecognized engine netcdf4 must be one of: [‘store‘]
【python读取nc文件】报错:ValueError: unrecognized engine netcdf4 must be one of: [‘store‘]
309 0
|
自然语言处理 监控 Java
掌握 Python RegEx:深入探讨模式匹配
掌握 Python RegEx:深入探讨模式匹配
111 0
|
并行计算 数据可视化 PyTorch