We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9dfaf55 commit 85f9f2fCopy full SHA for 85f9f2f
4-loops/fizzbuzz.py
@@ -1,4 +1,4 @@
1
-# FizzBuzz 🐝
+# Fizz Buzz 🐝
2
# Codédex
3
4
for num in range(99):
@@ -9,4 +9,4 @@
9
elif num % 5 == 0:
10
print("Buzz")
11
else:
12
- print(num)
+ print(num)
0 commit comments