Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 22-Day-22-Introduction-to-Lists/.tutorial/02-lists_indexes.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,6 @@ print(animals[1:8:3])
```
### Output:
```
['dog', 'pig', 'goat
['dog', 'pig', 'goat]
```
Here, jump index is 3. Hence it prints every 3rd element within given index.
Here, jump index is 3. Hence it prints every 3rd element within given index.