I have a CSV file where columns are separated using a non-standard symbol (||/).
df = pd.read_csv('data_analyst_assignment.csv',sep='||/', engine='python')
This throws an error:
ParserError: Expected 61 fields in line 3, saw 68. Error could possibly be due to quotes being ignored when a multi-char delimiter is used.
Can you please help me how to read this file?
\|\|/and tell us (escape pipe)