Answers for "python how to check if string contains only numbers"

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

Code answers related to "python how to check if string contains only numbers"

Python Answers by Framework

Browse Popular Code Answers by Language