Advertisement
Bunmite

Week 3 coding exercise

Feb 11th, 2020
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. def vowel_count(word):
  2. vowels= ( "a","e","i","o","u")
  3. count=0
  4. if vowels in word:
  5. count += 1
  6. Print (count)
  7. Vowel_count(Taiwo)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement