From 6c83506cb44b1d20f66df404f0b6468b0e291b6b Mon Sep 17 00:00:00 2001 From: RossTheRoss Date: Tue, 25 Jun 2019 17:55:13 -0500 Subject: Do a thing: --- misc/help.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'misc/help.py') diff --git a/misc/help.py b/misc/help.py index 2019f3c..35ef1b1 100644 --- a/misc/help.py +++ b/misc/help.py @@ -1,11 +1,11 @@ -# Give job please -for N in range (1,101): - S = '' - if N % 3 == 0: - S = S + "Fizz" - if N % 5 == 0: - S = S + "Buzz" - if N % 3 and N % 5: #I have no idea how this works at all - print(N) - else: - print(S) +# Give job please +for N in range (1,101): + S = '' + if N % 3 == 0: + S = S + "Fizz" + if N % 5 == 0: + S = S + "Buzz" + if N % 3 and N % 5: #I have no idea how this works at all + print(N) + else: + print(S) -- cgit v1.2.3