index
:
homework
master
Assorted classwork from my time at the University of Minnesota, 2018-2022
Matt Strapp was here
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
Diffstat
-rw-r--r--
help.py
2
1 files changed, 1 insertions, 1 deletions
diff --git a/help.py b/help.py
index c083688..616d1c2 100644
--- a/
help.py
+++ b/
help.py
@@ -1,5 +1,5 @@
# 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"