@@ -14,7 +14,7 @@ msgstr ""
14
14
"Project-Id-Version :Python 3.6 TW\n "
15
15
"Report-Msgid-Bugs-To :\n "
16
16
"POT-Creation-Date :2018-05-23 22:00+0800\n "
17
- "PO-Revision-Date :2018-06-05 04:44 +0000\n "
17
+ "PO-Revision-Date :2018-06-07 05:22 +0000\n "
18
18
"Last-Translator :Ching-Hao Liu <chinghao.liu@gmail.com>\n "
19
19
"Language-Team :Chinese Traditional (http://www.transifex.com/python-tw-doc/python-36-tw/language/zh-Hant/)\n "
20
20
"MIME-Version :1.0\n "
@@ -65,7 +65,7 @@ msgstr "將一個項目插入至 list 中給定的位置。第一個引數為插
65
65
msgid ""
66
66
"Remove the first item from the list whose value is *x*. It is an error if "
67
67
"there is no such item."
68
- msgstr "刪除 list中第一個是 *x* 的項目。若 list 中無此項目,這會是一個錯誤。"
68
+ msgstr "搜尋 list中值為 x 的項目,刪除 list 中第一個成功搜尋的結果(項目) 。若 list 中無此項目,這會是一個錯誤。"
69
69
70
70
#: ../../tutorial/datastructures.rst:50
71
71
msgid ""
@@ -85,7 +85,7 @@ msgstr "刪除 list 中所有項目。這等同於 ``del a[:]`` 。"
85
85
msgid ""
86
86
"Return zero-based index in the list of the first item whose value is *x*. "
87
87
"Raises a :exc:`ValueError` if there is no such item."
88
- msgstr "回傳 list中第一個是 *x* 的項目之從零開始的索引值 。若 list 中無此項目,就丟出 :exc:`ValueError`。"
88
+ msgstr "搜尋 list中值為 x 的項目,回傳第一個成功搜尋結果(項目)的位置(從零開始的索引值) 。若 list 中無此項目,就丟出 :exc:`ValueError`。"
89
89
90
90
#: ../../tutorial/datastructures.rst:69
91
91
msgid ""