When using the automatic separator detection configuration to read csv ( pd.read_csv(file_path, sep=None)) files , pandas tries to output the separator (or separator).
Is there a way to get the result of this output (the value that was finally used for sep)?
EDIT
I am looking specifically for a method that uses the pandas object that is returned read_csv. I am using version 0.20.2 from pandas.
source
share