fork download
  1. import re
  2.  
  3. text = "G231e453m423i6163n443i2431"
  4. result = re.sub(r'\d', '', text)
  5.  
  6. print(result) # Output: Gemini
Success #stdin #stdout 0.03s 9644KB
stdin
Standard input is empty
stdout
Gemini