python convert float to int if possible code example
Example 1: convert float to int python
# convert float to int
x=3.1415
y=int(x)
print(y) #outputs 3
Example 2: how to check whole number in python
x = 1/3 # insert your number here
print(x - int(x) == 0) # True if x is a whole number, False if it has decimals.
Example 3: python float to int
int(your_number)