fix translation mistake

#210
This commit is contained in:
but0n 2020-04-29 15:12:28 +10:00
parent f21a011eb4
commit 4bca6a7dd4
No known key found for this signature in database
GPG Key ID: F626CB5FBC608FAA

View File

@ -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]