Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Exercise 2 [Loops] Add the following three functions to a file called t3functions.py. Factorial: In mathematics, the factorial of a non-negative integer n, denoted by

image text in transcribed

Exercise 2 [Loops] Add the following three functions to a file called t3functions.py. Factorial: In mathematics, the factorial of a non-negative integer n, denoted by n!, is the product of all positive integers less than or equal to n. For example, 5! = 5* 4*3*2* 1. For this exercise, create a function called factorialWhile() that takes a single integer parameter n and returns n!. Write this function using a while loop. Next, add a function called factorialFor() that outputs the same result as factorialWhile() but uses a for loop instead of a while loop. Finally, add a function called numberOfVowels() that counts the number of vowels in a string. For this problem, vowels will consist of the letters a,e,i,o,u (both upper and lower case). You can use the provided tutorial3.py file to test your functions

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

XML Data Management Native XML And XML Enabled Database Systems

Authors: Akmal Chaudhri, Awais Rashid, Roberto Zicari, John Fuller

1st Edition

0201844524, 978-0201844528

More Books

Students also viewed these Databases questions

Question

What are the logistics implications of internationalisation?

Answered: 1 week ago