Skip to content

Commit c2d98bd

Browse files
committed
Update range.md with improved examples and explanations
1 parent b4ebc0f commit c2d98bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/builtin/range.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,11 @@ Two examples where the `stop` parameter is set to 0
108108
```python
109109
>>> for i in range(0):
110110
... print(i)
111-
#
111+
#
112112
```
113113

114114
```python
115115
>>> for i in range(1,0):
116116
... print(i)
117-
#
117+
#
118118
```

0 commit comments

Comments
 (0)