Skip to content

Commit edca181

Browse files
authored
Update 01-loops.md
1 parent abb6588 commit edca181

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Day-09/01-loops.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ while condition:
5050
count = 0
5151
while count < 5:
5252
print(count)
53-
count += 1
53+
count += 1 ---count = count+1
5454
```
5555

5656
**Output:**

0 commit comments

Comments
 (0)