aboutsummaryrefslogtreecommitdiffstats
path: root/help.py
diff options
context:
space:
mode:
Diffstat (limited to 'help.py')
-rw-r--r--help.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/help.py b/help.py
index c083688..abadaf8 100644
--- a/help.py
+++ b/help.py
@@ -1,10 +1,10 @@
# Time to make a real FizzBuzz
-for N in range (0,101):
+for N in range (1,101):
S = ''
if N % 3 == 0:
S = S + "Fizz"
if N % 5 == 0:
- S = S + "Buzz"
+ S = S + "Buzz"
if N % 3 and N % 5:
print(N)
else: