Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Advances In Knowledge Discovery In Databases

Authors: Animesh Adhikari, Jhimli Adhikari

1st Edition

3319132121, 9783319132129

More Books

Students also viewed these Databases questions

Question

What are the purposes of performance appraisals?

Answered: 1 week ago

Question

1. Who will you assemble on the team?

Answered: 1 week ago

Question

Did the team members feel that their work mattered

Answered: 1 week ago