Answers for "what can you use instead of the isnumeric function in python"

6

isnumeric python

str.isnumeric()
str = u"this2009";  
print str.isnumeric()
> False
str = u"23443434";
print str.isnumeric()
> True
Posted by: Guest on February-03-2020

Code answers related to "what can you use instead of the isnumeric function in python"

Python Answers by Framework

Browse Popular Code Answers by Language