mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
Corrected the last element of li in the lists explanation.
This commit is contained in:
parent
2e805c8c02
commit
f7352567f4
@ -122,7 +122,7 @@ li.append(3) # li is now [1, 2, 4, 3] again.
|
||||
# Access a list like you would any array
|
||||
li[0] #=> 1
|
||||
# Look at the last element
|
||||
li[-1] #=> 4
|
||||
li[-1] #=> 3
|
||||
|
||||
# Looking out of bounds is an IndexError
|
||||
try:
|
||||
|
Loading…
Reference in New Issue
Block a user