Answers for "python if type int"

7

python test if string is int

'16'.isdigit()
>>>True

'3.14'.isdigit()
>>>False

'Some text'.isdigit()
>>>False
Posted by: Guest on April-10-2020
7

check integer number python

N.is_integer()
Posted by: Guest on March-12-2020

Python Answers by Framework

Browse Popular Code Answers by Language