The method isnumeric() checks whether the string consists of only numeric characters. This method is present only on unicode objects.
NA
str.isnumeric()
#!/usr/bin/python str = u"this2009"; print str.isnumeric() str = u"23443434"; print str.isnumeric()
When we run above program, it produces following result −
False True