xxxxxxxxxx
# plz suscribe to my youtube channel -->
# https://www.youtube.com/channel/UC-sfqidn2fKZslHWnm5qe-A
convert_this = "60"
print(float(convert_this))
xxxxxxxxxx
# Use the function float() to turn a string into a float
string = '123.456'
number = float(string)
number
# Output:
# 123.456