From ac3454a41132b87fcead98fd14e5bb7b64b91691 Mon Sep 17 00:00:00 2001 From: RossTheRoss Date: Fri, 18 Jan 2019 17:08:20 -0600 Subject: Fix range --- help.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'help.py') 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" -- cgit v1.2.3