summaryrefslogtreecommitdiff
path: root/progs/a126.py
blob: f344bda5f2e0a061a28b00c0f9e23bdc9eafe711 (plain)
1
2
3
4
import re 
def remove_char(S):
  result = re.sub('[\W_]+', '', S) 
  return result