.isdigit() code example
Example 1: isdigit python
s='12'
s.isdigit()#returns True
Example 2: isdigit
Non-zero integer ( x > 0 ) Argument is a numeric character.
Zero (0) Argument is not a numeric character.
Example 3: python isdigit
my_char.isdigit()
Example 4: python isdigit
txt = "50800"
x = txt.isdigit()
print(x)