fork download
  1. def has_no_e(phrase):
  2. have_e = 0
  3. not_have_e = 0
  4. proc = (have_e/not_have_e) * 100
  5. list = []
  6. for word in phrase:
  7. list.append(word)
  8. for word in list:
  9. if 'e' in word:
  10. have_e += 1
  11. list.remove(word)
  12. else:
  13. not_have_e += 1
Success #stdin #stdout 0.02s 9984KB
stdin
Standard input is empty
stdout
Standard output is empty