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. đ