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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started