Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. VOWELS = 'aeiou'
  2. input_str = input("input the word: ")
  3. constonants_in_input = ' '
  4. vowels_in_input = ' '
  5. for char in input_str:
  6. if char in VOWELS:
  7. print(char)
  8. else:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement