From d8c8a0974bbe101e8225fe07eeb1b690e13dc921 Mon Sep 17 00:00:00 2001 From: Sayanta Paul <71244312+akasayanta@users.noreply.github.com> Date: Thu, 1 Oct 2020 13:57:01 +0530 Subject: [PATCH] IMPROVED DOC --- fizzbuzz.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fizzbuzz.py b/fizzbuzz.py index 3861337..f7d1c84 100644 --- a/fizzbuzz.py +++ b/fizzbuzz.py @@ -8,7 +8,7 @@ Write a program that prints the numbers from 1 to 100. But for multiples of three print “Fizz” instead of the number and for the multiples of five print “Buzz”. For numbers which are multiples -of both three and five print “FizzBuzz”. +of both three and five print “FIZZBUZZ”. We will use a variation of this test in which the last number of the series isn't necessarily 100, and the two numbers being tested @@ -32,7 +32,7 @@ Fizz 13 14 -FizzBuzz +FIZZBUZZ 16 17 Fizz