Answers for "float is int for what pytthon"

8

python is integer

(1.23).is_integer() # Returns false
Posted by: Guest on March-26-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

Python Answers by Framework

Browse Popular Code Answers by Language