aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--help.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/help.py b/help.py
index 8639b97..bed52d9 100644
--- a/help.py
+++ b/help.py
@@ -5,6 +5,7 @@ for N in range (1,101):
S = S + "Fizz"
if N % 5 == 0:
S = S + "Buzz"
+# I have no idea how this works
if N % 3 and N % 5:
print(N)
else: