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

前端 未结 2 519
执念已碎
执念已碎 2020-12-07 02:03

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

Also what is the situation when I wo

相关标签:
2条回答
  • 2020-12-07 02:24

    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.

    0 讨论(0)
  • 2020-12-07 02:47

    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.

    0 讨论(0)
提交回复
热议问题