"ValueError: could not convert string to float:" Hatası

>>> "7,12".replace(",", ".")
'7.12'
>>> float("7,12".replace(",", "."))
7.12
>>> 
1 Beğeni