Answers for "Convert a string to a float"

5

convert string to float c

char myString = "6.88";
float x = atof(myString);
//x is now 6.88
Posted by: Guest on February-20-2020
15

string to float python

# Use the function float() to turn a string into a float
string = '123.456'
number = float(string)
number
# Output:
# 123.456
Posted by: Guest on February-18-2020
1

how to convert string to float in python

convert_this = "60"
print(float(convert_this))
Posted by: Guest on October-12-2021

Code answers related to "Convert a string to a float"

Python Answers by Framework

Browse Popular Code Answers by Language