aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--help.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/help.py b/help.py
index 9d5958b..2019f3c 100644
--- a/help.py
+++ b/help.py
@@ -5,8 +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:
+ if N % 3 and N % 5: #I have no idea how this works at all
print(N)
else:
print(S)