diff options
author | Jesse Huang <jh3141@gmail.com> | 2015-10-02 14:00:54 -0400 |
---|---|---|
committer | Jesse Huang <jh3141@gmail.com> | 2015-10-02 14:00:54 -0400 |
commit | f35472d8d268f3e07dbbcccf953882d425a53240 (patch) | |
tree | 991fca71915ca88b52071589e0d4dda8188c9b49 /python.html.markdown | |
parent | f23d470961b952b3e6c3aa27ec2c48edd657baf0 (diff) |
Removed random "r"
Diffstat (limited to 'python.html.markdown')
-rw-r--r-- | python.html.markdown | 2 |
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. |