Answers for "how to check if a number is float"

1

python check if number is integer or float

>>> x = 12
>>> isinstance(x, int)
True
>>> y = 12.0
>>> isinstance(y, float)
True
Posted by: Guest on April-14-2021

Code answers related to "how to check if a number is float"

Python Answers by Framework

Browse Popular Code Answers by Language