Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

isnumeric python

str.isnumeric()
str = u"this2009";  
print str.isnumeric()
> False
str = u"23443434";
print str.isnumeric()
> True
Source by www.tutorialspoint.com #
 
PREVIOUS NEXT
Tagged: #isnumeric #python
ADD COMMENT
Topic
Name
6+7 =