fork download
  1. import re
  2.  
  3. text ='Senku Ishigami is charecter from a manga series98 onging since 2017.'
  4. text = re.sub(r'(?<=[a-z])\d+\b', '', text)
  5. print(text)
Success #stdin #stdout 0.03s 9532KB
stdin
Standard input is empty
stdout
Senku Ishigami is charecter from a manga series onging since 2017.