fork download
  1. import string
  2.  
  3. file = ('A quick brown fox jumps over the lazy dog','A slow yellow fox crawls under the proactive dog')
  4. for phrase in file:
  5. result = ''
  6. for x in list(string.lowercase[:26]):
  7. if file[0].find(x) >= 0:
  8. pass
  9. else:
  10. result = result + x
  11. print result
Runtime error #stdin #stdout 0.03s 5272KB
stdin
Standard input is empty
stdout
Standard output is empty