# Use the function float() to turn a string into a float
string = '123.456'
number = float(string)
number
# Output:
# 123.456
float(string)
string = "88.88"
print(float(string))
# output
# 88.88
# plz suscribe to my youtube channel -->
# https://www.youtube.com/channel/UC-sfqidn2fKZslHWnm5qe-A
convert_this = "60"
print(float(convert_this))
float(str)
#ValueError in case of invalid entry like "abc" "12c"
>>> number='1.1'
>>> float(number)
1.1
num = "12.5464"
flt = float(num)