Creating a FizzBuzz Program
Develop a FizzBuzz program.
We'll cover the following...
Getting started
range()
is a built-in Python function that accepts at least one argument and two optional ones: the optional beginning of the desired range (default starting point is 0 if none is specified), the end of the desired range that will not be included, and an optional int
, which specifies how much to step or increment the range (default is 1). range()
only accepts ...