summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorbut0n <but0n@icloud.com>2020-04-29 15:12:28 +1000
committerbut0n <but0n@icloud.com>2020-04-29 15:12:28 +1000
commit4bca6a7dd4a504a075c8a4433997931f49b74547 (patch)
tree994ab9a56f14e375baad73157952b265389f7a22
parentf21a011eb4923c59343ec8f8dc1ab3166e9de6ba (diff)
fix translation mistake
#210
-rw-r--r--zh-cn/pythonlegacy-cn.html.markdown2
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]