What is the difference between `sep` and `delimiter` attributes in pandas.read_csv() method?

╄→尐↘猪︶ㄣ 提交于 2019-11-29 15:08:50

Confirmation that they are the same thing can be found in the source code:

# Alias sep -> delimiter.
if delimiter is None:
    delimiter = sep

I agree with the other answer that it is best to stick to sep. It seems to be more commonly used, and it is more consistent with other functions such as to_csv, which does not accept delimiter, only sep.

They're the same thing. See here.

I assume one is for backwards compatibility. I'd just use sep, it's what I see the most.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!