Answers for "pythjon isnumeric"

5

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

Python Answers by Framework

Browse Popular Code Answers by Language