count how many vowels in a string python
def vowel_count(string):
vowels = ['a', 'e', 'i', 'o', 'u']
return len([i for i in string if i in vowels])
count how many vowels in a string python
def vowel_count(string):
vowels = ['a', 'e', 'i', 'o', 'u']
return len([i for i in string if i in vowels])
finding all vowels in a string python
def find_all_vowels(Word: str):
if Word == None or Word == "":
raise Exception("The arguments 'Word' is None or empty")
vowles_in_Word = []
Word = Word.upper()
Vowles_list = ["A","E","I","O","U"]
for character in Word:
if character in Vowles_list:
vowles_in_Word.append(character)
vowles_in_Word = tuple(vowles_in_Word)
return vowles_in_Word
print(find_all_vowels("ahkiojkl"))
try:
find_all_vowels(None)
find_all_vowels("")
except Exception as error:
print("Execption occoured",error)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us