Guest User

Untitled

a guest
Sep 26th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. Sentence = input("Please enter sentence: ")
  2. a = 0
  3. e = 0
  4. i = 0
  5. o = 0
  6. u = 0
  7. for index in range(0, len(Sentence) - 1):
  8. if Sentence(index) == "a":
  9. a = a + 1
  10. elif Sentence(index) == "e":
  11. e = e + 1
  12. elif Sentence(index) == "i":
  13. i = i + 1
  14. elif Sentence(index) == "o":
  15. o = o + 1
  16. elif Sentence(index) == "u":
  17. u = u + 1
  18. print(a, e, i, o, u)
Add Comment
Please, Sign In to add comment