aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--help.py13
1 files changed, 12 insertions, 1 deletions
diff --git a/help.py b/help.py
index 9ab8773..11f03bd 100644
--- a/help.py
+++ b/help.py
@@ -1 +1,12 @@
-# Test \ No newline at end of file
+# Time to make a real Fizzbuzz
+for e in range (0,101):
+ string = ''
+ if e % 3 == 0:
+ string = string + "Fizz"
+ if e % 5 == 0:
+ string = string + "Buzz"
+ if e % 5 != 0 and e % 3 != 0:
+ print(e)
+ else:
+ print(string)
+ \ No newline at end of file