Skip to content

Commit 85f9f2f

Browse files
authored
Update fizzbuzz.py
1 parent 9dfaf55 commit 85f9f2f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

4-loops/fizzbuzz.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# FizzBuzz 🐝
1+
# Fizz Buzz 🐝
22
# Codédex
33

44
for num in range(99):
@@ -9,4 +9,4 @@
99
elif num % 5 == 0:
1010
print("Buzz")
1111
else:
12-
print(num)
12+
print(num)

0 commit comments

Comments
 (0)