aboutsummaryrefslogtreecommitdiffstats
path: root/help.py
diff options
context:
space:
mode:
authorMatthew Strapp <msattr@gmail.com>2019-01-31 20:57:40 +0000
committerMatthew Strapp <msattr@gmail.com>2019-01-31 20:57:40 +0000
commit2fbf4872e923e9864341f9dab6c68105275ed74c (patch)
tree395f444c9b3981d8273e3386bfdf2ad70f13c892 /help.py
parentRearrange (diff)
downloadhomework-2fbf4872e923e9864341f9dab6c68105275ed74c.tar
homework-2fbf4872e923e9864341f9dab6c68105275ed74c.tar.gz
homework-2fbf4872e923e9864341f9dab6c68105275ed74c.tar.bz2
homework-2fbf4872e923e9864341f9dab6c68105275ed74c.tar.lz
homework-2fbf4872e923e9864341f9dab6c68105275ed74c.tar.xz
homework-2fbf4872e923e9864341f9dab6c68105275ed74c.tar.zst
homework-2fbf4872e923e9864341f9dab6c68105275ed74c.zip
Fix comment location
Diffstat (limited to 'help.py')
-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)