Answers for "pyhton int to float"

16

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
0

int to float python

floatNum = float(intNum)
Posted by: Guest on August-17-2021

Python Answers by Framework

Browse Popular Code Answers by Language