You can use this assignment in your class!
Mastery Progress(100.0%)
i

If Statements Review Assignment

x = int(input())
if x % 3 == 0:
    print("Fizz")
elif x % 5 == 0:
    print("Buzz")
elif x % 3 == 0 and x % 5 == 0:
    print("FizzBuzz")Figure A
You answeredJUST NOW
  • I want to share my response with my peers
  • Share as
    (Student name)
    Options
    • (Student name)
    • Anonymous

Did you like this question?

(Voting helps us personalize your learning experience!)
imgInstructor solution
Alec KretchAUG 11, 2021, 9:35:20 AM
  • x = int(input())
if x % 3 == 0 and x % 5 == 0:
    print("FizzBuzz")
elif x % 3 == 0:
    print("Fizz")
elif x % 5 == 0:
    print("Buzz")Figure B

Was this helpful?

(Voting helps us personalize your learning experience!)
imgControl Flow in Python Presentation (page 6)

Was this helpful?

(Voting helps us personalize your learning experience!)
Think you've got it?
  • def a_vs_b(a,b):
    if a is b:
        print("spam")
    elif a == b:
        print("ham")
    else:
        print("eggs")Figure C
Select one of the following options:
  • A.
  • B.
Submit answer

Was this helpful?

(Voting helps us personalize your learning experience!)

You may exit out of this review and return later without penalty.