I am trying to create a dataframe in pandas using a CSV that is semicolon-delimited, and uses commas for the thousands separator on numeric data. Is there a way to read this
The answer to this question should be short:
df=pd.read_csv('filename.csv', thousands=',')