Answers for "python convert float string to int"

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
13

convert float to int python

# convert float to int 
x=3.1415
y=int(x)
print(y) #outputs 3
Posted by: Guest on December-08-2020
1

python float to int

int(your_number)
Posted by: Guest on December-22-2020

Code answers related to "python convert float string to int"

Python Answers by Framework

Browse Popular Code Answers by Language