Answers for "how to use 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
0

isnumeric

isalpha() - To check Alphabets
isnumeric() - To check Number
isalnum() - To check both alphabates and number
Posted by: Guest on February-18-2021

Python Answers by Framework

Browse Popular Code Answers by Language