From d8ff3a8f398beabaefcb96eacab23ba575e0092d Mon Sep 17 00:00:00 2001 From: Nikhil Date: Thu, 7 Nov 2019 10:54:33 +0530 Subject: [PATCH] fourth challenge completed --- 04_challenge/04_challenge.py | 2 +- 04_challenge/readme.md | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/04_challenge/04_challenge.py b/04_challenge/04_challenge.py index a3f5edf..1cc8304 100644 --- a/04_challenge/04_challenge.py +++ b/04_challenge/04_challenge.py @@ -23,7 +23,7 @@ def fizzbuzz(max_num): for i in range(1,max_num): # % or modulo division gives you the remainder if i%num1==0 and i%num2==0: - print(i,three_mul+five_mul) + print(i,three_mul+five_mul) elif i%num1==0: print(i,three_mul) elif i%num2==0: diff --git a/04_challenge/readme.md b/04_challenge/readme.md index e69de29..7c421fd 100644 --- a/04_challenge/readme.md +++ b/04_challenge/readme.md @@ -0,0 +1,5 @@ +a.Just by reading the error message"expected an indented block" i got it. + +b. i knew where the error was fixed it quite easily. + +c. to look carefully for Indented blocks \ No newline at end of file