Answers for "int check str"

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

Python Answers by Framework

Browse Popular Code Answers by Language