Answers for "how to detect numbers and strings in a string pyhton"

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
0

get number in string python

from itertools import groupby
my_str = "hello 12 hi 89"

l = [int(''.join(i)) for is_digit, i in groupby(my_str, str.isdigit) if is_digit]
Posted by: Guest on August-26-2021

Code answers related to "how to detect numbers and strings in a string pyhton"

Python Answers by Framework

Browse Popular Code Answers by Language