fork download
  1. lst="This! Is! A! Test"
  2. a = ""
  3. for i in lst :
  4. if i=="!": continue
  5. a += i
  6. print(a)
  7.  
Success #stdin #stdout 0.04s 27712KB
stdin
Standard input is empty
stdout
This Is A Test