Commit 1760d7b
authored
Create FizzBuzz.py
# FizzBuzz
# A program that prints the numbers from 1 to num (User given number)!
# For multiples of ‘3’ print “Fizz” instead of the number.
# For the multiples of ‘5’ print “Buzz”.
# If the number is divisible by both 3 and 5 then print "FizzBuzz".
# If none of the given conditions are true then just print the number!1 parent 5991a21 commit 1760d7b
1 file changed
+13
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
0 commit comments