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

https://github.com/julian-nash/python-fizzbuzz

Two variations of "FizzBuzz" using Python
https://github.com/julian-nash/python-fizzbuzz

Last synced: 9 months ago
JSON representation

Two variations of "FizzBuzz" using Python

Awesome Lists containing this project

README

          

## Python FizzBuzz

Two function variations of "FizzBuzz".

### Usage

Clone this repo & run:

```sh
python example.py
```

Output:

```sh
1,2,Fizz,4,Buzz,Fizz,7,8,Fizz,Buzz,11,Fizz,13,14,FizzBuzz,16,17,Fizz,19,Buzz
1,2,Fizz,4,Buzz,Fizz,7,8,Fizz,Buzz,11,Fizz,13,14,FizzBuzz,16,17,Fizz,19,Buzz
```

### Testing

```sh
python tests.py
```