python check string contains only letters and numbers code example
Example: python how to check if string contains only numbers
print("012345".isdecimal())
OUTPUT
True
print("a12345".isdecimal())
OUTPUT
False
print("012345".isdecimal())
OUTPUT
True
print("a12345".isdecimal())
OUTPUT
False