Skip to content

ENH: support decimal option in PythonParser #12933

Closed
@jreback

Description

@jreback
In [5]: pd.read_csv(StringIO('1,2;2,3'),decimal=',',sep=';',header=None,engine='c')
Out[5]: 
     0    1
0  1.2  2.3

In [6]: pd.read_csv(StringIO('1,2;2,3'),decimal=',',sep=';',header=None,engine='python')
ValueError: The 'decimal' option is not supported with the 'python' engine

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions