summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNami-Doc <vendethiel@hotmail.fr>2014-02-18 10:21:08 +0100
committerNami-Doc <vendethiel@hotmail.fr>2014-02-18 10:21:08 +0100
commitccd0f09ea560560546f67d96d67d8e3bd1f8d4d8 (patch)
treebec313b2e7907f3b378b93af456e9e328dc5e229
parent5ff5f6c0d864f6ec300f14e49119d4e259dbf4be (diff)
parentda3b7c3520b18bf5b94d99bcf8170d679051810a (diff)
Merge pull request #536 from markwhiting/patch-1
Better explanation of list slices
-rw-r--r--python.html.markdown4
1 files changed, 4 insertions, 0 deletions
diff --git a/python.html.markdown b/python.html.markdown
index 15f27d37..908a0638 100644
--- a/python.html.markdown
+++ b/python.html.markdown
@@ -160,8 +160,12 @@ li[1:3] #=> [2, 4]
li[2:] #=> [4, 3]
# Omit the end
li[:3] #=> [1, 2, 4]
+# Select every second entry
+li[::2] #=>[1,4]
# Revert the list
li[::-1] #=> [3, 4, 2, 1]
+# Use any combination of these to make advanced slices
+# li[start:end:step]
# Remove arbitrary elements from a list with "del"
del li[2] # li is now [1, 2, 3]