diff options
author | but0n <but0n@icloud.com> | 2020-04-29 15:12:28 +1000 |
---|---|---|
committer | but0n <but0n@icloud.com> | 2020-04-29 15:12:28 +1000 |
commit | 4bca6a7dd4a504a075c8a4433997931f49b74547 (patch) | |
tree | 994ab9a56f14e375baad73157952b265389f7a22 | |
parent | f21a011eb4923c59343ec8f8dc1ab3166e9de6ba (diff) |
fix translation mistake
#210
-rw-r--r-- | zh-cn/pythonlegacy-cn.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zh-cn/pythonlegacy-cn.html.markdown b/zh-cn/pythonlegacy-cn.html.markdown index 756081d6..f8aa2332 100644 --- a/zh-cn/pythonlegacy-cn.html.markdown +++ b/zh-cn/pythonlegacy-cn.html.markdown @@ -163,7 +163,7 @@ li[:3] # => [1, 2, 4] del li[2] # li 现在是 [1, 2, 3] # 合并列表 -li + other_li # => [1, 2, 3, 4, 5, 6] - 并不会不改变这两个列表 +li + other_li # => [1, 2, 3, 4, 5, 6] - 并不会改变这两个列表 # 通过拼接来合并列表 li.extend(other_li) # li 是 [1, 2, 3, 4, 5, 6] |