Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kkartaltepe/fizzbuzzpython

A simple fizzbuzz project in Python
https://github.com/kkartaltepe/fizzbuzzpython

Last synced: 2 days ago
JSON representation

A simple fizzbuzz project in Python

Awesome Lists containing this project

README

        

This program prints "Fizz" on multiple of 3, "Buzz" on multiples of 5, and "FizzBuzz" on multiples of 3 and 5, and the number otherwise.

Simply call fizzbuzz with the start and end you want and it will print everything out (end is inclusive).
There is a simple output of fizzbuzz(1,100) in the fizzbuzz.out file.