isnumeric( ) code example
Example 1: isnumeric python
str.isnumeric()
str = u"this2009";
print str.isnumeric()
> False
str = u"23443434";
print str.isnumeric()
> True
Example 2: isnumeric
isalpha() - To check Alphabets
isnumeric() - To check Number
isalnum() - To check both alphabates and number