Fix Python typo.

This commit is contained in:
Rinoc Johnson 2015-04-30 17:56:01 -04:00
parent f4beb3bea9
commit e13e00945d

View File

@ -191,7 +191,7 @@ li[2:] # => [4, 3]
li[:3] # => [1, 2, 4] li[:3] # => [1, 2, 4]
# Select every second entry # Select every second entry
li[::2] # =>[1, 4] li[::2] # =>[1, 4]
# Revert the list # Reverse the list
li[::-1] # => [3, 4, 2, 1] li[::-1] # => [3, 4, 2, 1]
# Use any combination of these to make advanced slices # Use any combination of these to make advanced slices
# li[start:end:step] # li[start:end:step]