Answers for "check have number in string python"

18

python test if number in string

>>> 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 April-17-2020
2

python check if string is number

txt = "565543"

x = txt.isnumeric()
Posted by: Guest on June-01-2021

Code answers related to "check have number in string python"

Python Answers by Framework

Browse Popular Code Answers by Language