Skip to content

Commit 0f5c690

Browse files
Merge pull request #34 from sinhatarak/patch-1
Update 09-for-loop.md
2 parents 47f5caa + 671ba76 commit 0f5c690

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

09-for-loop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ number = int(input("Enter an integer: "))
140140

141141
for count in range(1, 11):
142142
product = number * count
143-
print(number, "*", i, "=", product)
143+
print(number, "*", count, "=", product)
144144
```
145145

146146
**Output**

0 commit comments

Comments
 (0)