Skip to content

Commit 1d135e2

Browse files
Update for-loops.md--move nit from code to output
nit is included at the end of this loop when it should be the output, so I removed it from the code and made it the output.
1 parent 31375d8 commit 1d135e2

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

episodes/for-loops.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,9 +198,10 @@ result = ""
198198
for char in original:
199199
result = char + result
200200
print(result)
201+
```
202+
```output
201203
nit
202204
```
203-
204205
If you were to expand out the loop the iterations would look something like this:
205206

206207
```python

0 commit comments

Comments
 (0)