Answers for "Check if a number is integer or decimal in Python"

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
0

Check if a number is integer or decimal in Python

Check if object is int or float: isinstance()
Check if float is integer: is_integer()
Check if numeric string is integer:
def is_integer(n):
    try:
        float(n)
    except ValueError:
        return False
    else:
        return float(n).is_integer()
Posted by: Guest on January-26-2022

Code answers related to "Check if a number is integer or decimal in Python"

Python Answers by Framework

Browse Popular Code Answers by Language