summaryrefslogtreecommitdiffhomepage
path: root/python.html.markdown
diff options
context:
space:
mode:
authorJesse Huang <jh3141@gmail.com>2015-10-02 14:02:28 -0400
committerJesse Huang <jh3141@gmail.com>2015-10-02 14:02:28 -0400
commitae372bb817fa0aa2c8b0135e181b80d44c8baa0d (patch)
tree991fca71915ca88b52071589e0d4dda8188c9b49 /python.html.markdown
parentf23d470961b952b3e6c3aa27ec2c48edd657baf0 (diff)
parentf35472d8d268f3e07dbbcccf953882d425a53240 (diff)
Merge pull request #1 from jhuang314/jhuang314-patch-1
Removed random "r"
Diffstat (limited to 'python.html.markdown')
-rw-r--r--python.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/python.html.markdown b/python.html.markdown
index 352f7349..5572e38e 100644
--- a/python.html.markdown
+++ b/python.html.markdown
@@ -198,7 +198,7 @@ li[::-1] # => [3, 4, 2, 1]
# Remove arbitrary elements from a list with "del"
del li[2] # li is now [1, 2, 3]
-r
+
# You can add lists
li + other_li # => [1, 2, 3, 4, 5, 6]
# Note: values for li and for other_li are not modified.