Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

This lab looks similar to lab 4.2, but the you need to use list and recursive function we learned this week to complete the task.

This lab looks similar to lab 4.2, but the you need to use list and recursive function we learned this week to complete the task. Watch the videot tutorial - 10.7 Video tutorial - Recursive Function Illustrated

to understand recrusive functions before you start this lab.

Write a function called count_vowels() using what we learned this week about list and recursive function. Here are the requirements:

1. solution uses recursive function. A recursive function has exit condition, and statements that calls itself.

2. function count_vowels takes a parameter of a String type: count_vowels(mystr)

3. function count_vowels returns a integer of how many vowels there are in the string parameter

4. a vowel is any letter in a, e, i, o, u, A, E, I, O, U

5. function count_vowels collects all the vowels in the string parameter, and prints out all the vowels at the end.

6. here's an example of calling the function and the output:

>>> count = count_vowels("banana")

aaa

>>> count

3

[Checkpoint] Submit the python code (the .py file) in text format, and the screen capture of calling your function with at least two different string arguments and the output. Make sure your program works before submiting it.

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_2

Step: 3

blur-text-image_3

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

Data Analysis Using SQL And Excel

Authors: Gordon S Linoff

2nd Edition

111902143X, 9781119021438

More Books

Students also viewed these Databases questions

Question

List at least three advantages to using a consultant.

Answered: 1 week ago

Question

Choose one of the commonly used database querying languages.

Answered: 1 week ago