I have a dataset which has as separator ;
but I want ,
to be the new separator. I'm currently using pandas.Dataframe.replace
to achieve it, but it seems like there is no effect.
The dataset is something like this:
A; B; C; D; E
1; 32; 234; 2; 23
2; 3; 1; 55; 545
3; 44; 12; 1; 3
...