Answers for "how to extract number in string python"

0

how to extract integers from string python

>>> txt = "h3110 23 cat 444.4 rabbit 11 2 dog"
>>> [int(s) for s in txt.split() if s.isdigit()]
[23, 11, 2]
Posted by: Guest on June-05-2021
0

how to get a number from a string in python

string = "I am 14 years old"
for i in string.split():
  if i.isdigit():
    print(i)
print()
Posted by: Guest on February-11-2021

Code answers related to "how to extract number in string python"

Python Answers by Framework

Browse Popular Code Answers by Language