Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/kkartaltepe/fizzbuzzpython
- Owner: kkartaltepe
- Created: 2014-04-28T20:25:03.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-04-28T20:43:00.000Z (over 10 years ago)
- Last Synced: 2024-12-12T06:05:04.400Z (22 days ago)
- Language: Python
- Size: 105 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
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.