Answers for "python chekc if string is a number"

22

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
0

python check if number in string

s = "abc1"
contains_digit = any(map(str.isdigit, s))
print(contains_digit)
Posted by: Guest on February-16-2022

Code answers related to "python chekc if string is a number"

Python Answers by Framework

Browse Popular Code Answers by Language