Answers for "check if a string contains integer only python"

4

python how to check if string contains only numbers

print("012345".isdecimal())
OUTPUT
True
print("a12345".isdecimal())
OUTPUT
False
Posted by: Guest on September-24-2020
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

Code answers related to "check if a string contains integer only python"

Python Answers by Framework

Browse Popular Code Answers by Language