Answers for "python check if value has decimal"

1

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.
Posted by: Guest on May-19-2020
2

w=how to tell if decimal in python

i = 100
f = 1.23

print(type(i))
print(type(f))
# <class 'int'>
# <class 'float'>
Posted by: Guest on July-21-2020

Code answers related to "python check if value has decimal"

Python Answers by Framework

Browse Popular Code Answers by Language