本文介绍了pandas read_csv 编码列表列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在寻找 pandas read_csv 编码选项字符串的列表.
I'm looking for a list of pandas read_csv encoding option strings.
我发现以下 URL 记录了 read_csv 函数的参数,但它没有包含 read_csv 可能的编码选项列表.
I found the following URL documenting the parameters of the read_csv function but it doesn't include a list of possible encoding options for read_csv.
http://pandas.pydata.org/pandas-docs/version/0.13.1/generated/pandas.io.parsers.read_csv.html
谁能帮我解决这个问题?
Can anyone help me with this?
推荐答案
这是可用的 python 3 编码列表 -
Here's a list of available python 3 encodings -
https://docs.python.org/3/library/codecs.html#standard-encodings
我不认为 Pandas 包含或排除任何其他编码.
I don't think pandas includes or excludes any additional encodings.
这篇关于pandas read_csv 编码列表列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!