+ 1
I want to convert a float to a string, i mean, lets say 123.4567 to "1234567" ,then store it in a list like list=['1','2','3'..]
convertion of float to string
1 Answer
+ 13
x = str(123.4567).replace(".", "")
lst = list(x)
convertion of float to string