Question: In Python Please This answer was incorrect: def fizz_buzz(max_fizz_buzz, fizz, buzz): lst = [] for i in range(1, max_fizz_buzz+1): if i % fizz == 0

In Python PleaseIn Python Please This answer was incorrect: def fizz_buzz(max_fizz_buzz, fizz, buzz): lst

This answer was incorrect:

def fizz_buzz(max_fizz_buzz, fizz, buzz): lst = [] for i in range(1, max_fizz_buzz+1): if i % fizz == 0 and i % buzz == 0: lst.append('fizzbuzz') elif i % fizz: lst.append('fizz') elif i % buzz: lst.append('buzz') else: lst.append(i) return lst 

Part I: FizzBuzz (20 points) Write the function fizz_buzz (), which takes three arguments in the following order: max.fizzbuzz: a positive integer * fizz: a prime number buzz: a prime number The function returns a list of integers and strings until a condition described below is met. Suppose this list is called result. The following rules are applied: . If a number is a multiple of both fizz and buzz, then append fizzbuzz' to result. If a number is a multiple of fizz only, then append 'fizz' to result. If a number is a multiple of buzz only, then append , buzz, to result. If a number is not a multiple of either fizz or buzz, then simply append the number to result

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!