Comment obtenir un numéro à partir d'une chaîne en python

string = "I am 14 years old"
for i in string.split():
  if i.isdigit():
    print(i)
print()
Tired Toucan