- isdecimal() is a python in-build function which return True or False.
- it will True if string contain only decimal numbers
- and it will give False if string contain any alphabet or otherthing except the decimal number.
program-
s="my123text"
print(s.isdecimal())
s="12345678"
print(s.isdecimal())
False
True