Question: home / study / engineering / computer science / questions and answers / in python, write a recursive function, containsvowel, ... Question In Python, Write
home / study / engineering / computer science / questions and answers / in python, write a recursive function, containsvowel, ... Question In Python, Write a recursive function, containsVowel, which accepts one parameter containing a string value and returns True if the string contains a vowel. A string contains a vowel if: The first character of the string is a vowel or The rest of the string (beyond the first character) contains a vowel\
My code:
def containsVowel(s): if s[0:] == "aeiouAEIOU":
return True
else:
return False
it doesnt work however. It actually does the opposite of what i want it to do. Also it doesnt work for all variables.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
