aboutsummaryrefslogtreecommitdiffstats
path: root/help.py
diff options
context:
space:
mode:
Diffstat (limited to 'help.py')
-rw-r--r--help.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/help.py b/help.py
deleted file mode 100644
index 2019f3c..0000000
--- a/help.py
+++ /dev/null
@@ -1,11 +0,0 @@
-# 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)