From 671ba76d9713b99e284120079815da5edd3f81d5 Mon Sep 17 00:00:00 2001 From: sinhatarak <51812628+sinhatarak@users.noreply.github.com> Date: Tue, 10 Aug 2021 15:26:19 +0530 Subject: [PATCH] Update 09-for-loop.md Replaced "i" to count in line 143 --- 09-for-loop.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09-for-loop.md b/09-for-loop.md index 00993d7..d72d3f9 100644 --- a/09-for-loop.md +++ b/09-for-loop.md @@ -140,7 +140,7 @@ number = int(input("Enter an integer: ")) for count in range(1, 11): product = number * count - print(number, "*", i, "=", product) + print(number, "*", count, "=", product) ``` **Output**