Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corrected a typo #488

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
Corrected a typo
  • Loading branch information
DarkTechPirate committed Mar 23, 2024
commit be120630bab560da4566df1ff420a405d5f13fc3
2 changes: 1 addition & 1 deletion 06_Day_Tuples/06_tuples.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ len(tpl)
first_fruit = fruits[0]
second_fruit = fruits[1]
last_index =len(fruits) - 1
last_fruit = fruits[las_index]
last_fruit = fruits[last_index]
```

- Negative indexing
Expand Down