我是靠谱客的博主 柔弱冬天,最近开发中收集的这篇文章主要介绍Python报【Falling back to the ‘python‘ engine because the ‘c‘ engine does not support skipfooter】的解决方案,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

如题,使用pandas读取txt数据时,报如下警告:
D:Program Filespython3.7libsite-packagespandasutil_decorators.py:311: ParserWarning: Falling back to the ‘python’ engine because the ‘c’ engine does not support skipfooter; you
can avoid this warning by specifying engine=‘python’.
return func(*args, **kwargs)

要不说python友好呢,都直接给出了解决方案,在参数列表添加engine='python',如下:

# 报错前
data = pd.read_table("txt.txt", header=None, sep = 't', skiprows=1, skipfooter=1)

# 报错后
data = pd.read_table("txt.txt", header=None, sep = 't', skiprows=1, skipfooter=1,engine='python')

最后

以上就是柔弱冬天为你收集整理的Python报【Falling back to the ‘python‘ engine because the ‘c‘ engine does not support skipfooter】的解决方案的全部内容,希望文章能够帮你解决Python报【Falling back to the ‘python‘ engine because the ‘c‘ engine does not support skipfooter】的解决方案所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(30)

评论列表共有 0 条评论

立即
投稿
返回
顶部