summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2013-06-28 14:02:45 -0700
committerAdam Bard <github@adambard.com>2013-06-28 14:02:45 -0700
commit63b8f04c57790ef6be4ab4a58c2473b600007a05 (patch)
treee340bea827cf9e90cee8e96ad20a11d3f3447bd7
parent16199fe04c54977a70d1ae6160e7715483e04e30 (diff)
parentf7352567f4f76a26ebfe09365faa8bc790463dd3 (diff)
Merge pull request #17 from mrshankly/patch-1
Corrected the last element of li in the lists explanation
-rw-r--r--python.html.markdown8
1 files changed, 4 insertions, 4 deletions
diff --git a/python.html.markdown b/python.html.markdown
index a3ced659..a599f5d3 100644
--- a/python.html.markdown
+++ b/python.html.markdown
@@ -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:
@@ -145,7 +145,7 @@ del li[2] # li is now [1, 2, 3]
li + other_li #=> [1, 2, 3, 4, 5, 6] - Note: li and other_li is left alone
# Concatenate lists with extend
-li.extend(other_li) # Now li is [1, 2, 3, 4, 5, 6]
+li.extend(other_li) # Now li is [1, 2, 3, 4, 5, 6]
# Check for existence in a list with in
1 in li #=> True
@@ -259,14 +259,14 @@ prints:
"""
for animal in ["dog", "cat", "mouse"]:
# You can use % to interpolate formatted strings
- print "%s is a mammal" % animal
+ print "%s is a mammal" % animal
"""
While loops go until a condition is no longer met.
prints:
0
1
- 2
+ 2
3
"""
x = 0