Skip to content

Commit

Permalink
Update range.md with improved examples and explanations
Browse files Browse the repository at this point in the history
  • Loading branch information
wilfredinni committed Aug 11, 2024
1 parent b4ebc0f commit c2d98bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/builtin/range.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,11 @@ Two examples where the `stop` parameter is set to 0
```python
>>> for i in range(0):
... print(i)
#
#
```

```python
>>> for i in range(1,0):
... print(i)
#
#
```

0 comments on commit c2d98bd

Please sign in to comment.