I know I could use regular expressions to filter text in python for digits, but is that the best way?
Say I have a list of strings:
a="gamma function: 78"
b="factorial value: 120"
c="random number: 33"
is there a good function that would do the following?
for string in [a,b,c]:
return numbers(string)
78
120
33