Introduction to FizzBuzz and Writing a Python Program

Introduce readers to the FizzBuzz problem to practice using Python

In software development, FizzBuzz is a common first-level interview question that weeds out anyone who cannot program in the desired language. The question generally goes something like this:

Problem:
Write a program that prints out the numbers 1 to 100. If the number is a multiple of 3, print Fizz instead of the number. If the number is a multiple of 5, print Buzz instead of the number. If the number is a multiple of both 3 and 5, print FizzBuzz instead of the number.

Let’s write your first program!