Advertisement
VanoHa

Names

Aug 15th, 2021
1,310
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. while True:
  2.     s = input("Enter your word here (you can use English and Russian)").lower()
  3.     abc = 'aeiouyаоыэяиюуе'
  4.     count = 0
  5.     for i in s:
  6.         if i in abc:
  7.             count += 1
  8.     print(count)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement