diff options
Diffstat (limited to 'help.py')
-rw-r--r-- | help.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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) |