I have a dataframe in pandas, with a column named "Score". I have to do a rank,nevertheless in the column I have numbers like: 100 200 300 but also numbers like: 500,00 800,00
I need to clean this column to rank.
when I try to convert the string to int I got this error:
invalid literal for int() with base 10: '610,00'
and when try to convert first to Float then integer i got: could not convert string to float: '610,00'
I need to clean the column to the number dont be 500,00 800,00 etc,
but 500 800 610...