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