In the FizzBuzz challenge, your objective is to say the numbers from 1 to 100, as a group, except:

  • On multiples of three say “Fizz” instead of the number
  • On multiples of five say “Buzz” instead of the number
  • On multiples of both three and five say “FizzBuzz” instead of the number

Then, using your knowledge of Python developed last week, try writing code to do this. 😊