fork download
  1. k = 'A.quantity.of,striped words'
  2. non = ['.', ',']
  3. for sym in non:
  4. k = k.replace(sym, " ")
  5. print(k)
Success #stdin #stdout 0.04s 9440KB
stdin
Standard input is empty
stdout
A quantity of striped words