Skip to content

Latest commit

 

History

History
14 lines (8 loc) · 221 Bytes

File metadata and controls

14 lines (8 loc) · 221 Bytes

PyBuzz

FizzBuzz in Python3

Given a range of numbers (say 1 - 100)

if the number is equally divisible by 3 print out "Py"

if the number is equally divisible by 5 print out "Buzz"

otherwise, print out the number