How to check if a float value is a whole number in Python?



To check if a float value is a whole number, use the float.is_integer() method. For example,

print((10.0).is_integer())
print((15.23).is_integer())

This will give the output

True
False
Updated on: 2020-06-17T12:57:59+05:30

2K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements