Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- while True:
- s = input("Enter your word here (you can use English and Russian)").lower()
- abc = 'aeiouyаоыэяиюуе'
- count = 0
- for i in s:
- if i in abc:
- count += 1
- print(count)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement