Answers for "if not a number in python"

2

string is not number python

string.isnumeric()
Posted by: Guest on April-08-2021
0

if any number python

>>> def hasNumbers(inputString):
...     return any(char.isdigit() for char in inputString)
... 
>>> hasNumbers("I own 1 dog")
True
>>> hasNumbers("I own no dog")
False
Posted by: Guest on November-10-2020

Python Answers by Framework

Browse Popular Code Answers by Language