I am importing a CSV file like the one below, using pandas.read_csv:
pandas.read_csv
df = pd.read_csv(Input, delimiter=\";\")
Example of CSV f
pandas.read_csv has a decimal parameter for this: doc
decimal
I.e. try with:
df = pd.read_csv(Input, delimiter=";", decimal=",")