diff options
author | ven <vendethiel@hotmail.fr> | 2015-10-03 07:59:40 +0200 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2015-10-03 07:59:40 +0200 |
commit | ee58eda9514be6b487f26ddae58115e9aaf5777d (patch) | |
tree | 991fca71915ca88b52071589e0d4dda8188c9b49 /python.html.markdown | |
parent | f23d470961b952b3e6c3aa27ec2c48edd657baf0 (diff) | |
parent | ae372bb817fa0aa2c8b0135e181b80d44c8baa0d (diff) |
Merge pull request #1295 from jhuang314/master
[python/en] Remove 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. |