From 2fbf4872e923e9864341f9dab6c68105275ed74c Mon Sep 17 00:00:00 2001 From: Matthew Strapp Date: Thu, 31 Jan 2019 20:57:40 +0000 Subject: Fix comment location --- help.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'help.py') 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) -- cgit v1.2.3