当前位置 : 主页 > 编程语言 > python >

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

来源:互联网 收集:自由互联 发布时间:2022-06-15
文章目录 原来的代码为: df = read_csv ( './rz10.csv' , names = [ 'YHM' , 'DLSJ' , 'TCSJ' , 'YWXT' , 'IP' , 'REMARK' ], sep = " ," ) 报错如下: 解决方法: 追加一个参数:​​​engine='python'​​​ 成功如下


文章目录


原来的代码为:


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

报错如下:
arserWarning: Falling back to the ‘python‘ engine because the ‘c‘ engine does not support regex sepa_c语言
解决方法:
追加一个参数:​​​engine='python'​​​ 成功如下:
arserWarning: Falling back to the ‘python‘ engine because the ‘c‘ engine does not support regex sepa_ar_02


上一篇:python2自动转换为python3
下一篇:没有了
网友评论