Substitute inside a string | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Substitute inside a string

If the user inputs "5,7" instead of "5.7", the float conversion would not work. How do you substitute the comma with the point in the input value?

1st Jul 2019, 9:32 AM
Jacopo
Jacopo - avatar
1 Answer
+ 8
It's very simple: print(float(input().replace(",", ".")))
1st Jul 2019, 9:36 AM
Airree
Airree - avatar