44#
55# Translators:
66# Adrian Liaw <adrianliaw2000@gmail.com>, 2016
7+ # Ching-Hao Liu <chinghao.liu@gmail.com>, 2018
78# KentHsu <luffy1610@gmail.com>, 2016
89# Liang-Bo Wang <me@liang2.tw>, 2015-2016
910# Liang-Bo Wang <me@liang2.tw>, 2016
@@ -13,8 +14,8 @@ msgstr ""
1314"Project-Id-Version :Python 3.6 TW\n "
1415"Report-Msgid-Bugs-To :\n "
1516"POT-Creation-Date :2018-05-23 22:00+0800\n "
16- "PO-Revision-Date :2018-05-23 16:18 +0000\n "
17- "Last-Translator :Adrian Liaw <adrianliaw2000 @gmail.com>\n "
17+ "PO-Revision-Date :2018-06-03 07:57 +0000\n "
18+ "Last-Translator :Ching-Hao Liu <chinghao.liu @gmail.com>\n "
1819"Language-Team :Chinese Traditional (http://www.transifex.com/python-tw-doc/python-36-tw/language/zh-Hant/)\n "
1920"MIME-Version :1.0\n "
2021"Content-Type :text/plain; charset=UTF-8\n "
@@ -51,7 +52,7 @@ msgstr "將一個新的項目加到 list 的尾端。等同於 ``a[len(a):] = [x
5152msgid ""
5253"Extend the list by appending all the items from the iterable. Equivalent to"
5354" ``a[len(a):] = iterable``."
54- msgstr ""
55+ msgstr "將串列接上此 iterable(可列舉物件)中所有項目。等同於 ``a[len(a):] = iterable`` 。 "
5556
5657#: ../../tutorial/datastructures.rst:35
5758msgid ""
@@ -84,15 +85,15 @@ msgstr "刪除 list 中所有項目。這等同於 ``del a[:]`` 。"
8485msgid ""
8586"Return zero-based index in the list of the first item whose value is *x*. "
8687"Raises a :exc:`ValueError` if there is no such item."
87- msgstr ""
88+ msgstr "回傳 list 中第一個其值為 *x* 的項目的索引值(從零開始)。如果沒有這樣一個項目,就丟出 :exc:`ValueError`。 "
8889
8990#: ../../tutorial/datastructures.rst:69
9091msgid ""
9192"The optional arguments *start* and *end* are interpreted as in the slice "
9293"notation and are used to limit the search to a particular subsequence of the"
9394" list. The returned index is computed relative to the beginning of the full"
9495" sequence rather than the *start* argument."
95- msgstr ""
96+ msgstr "可選的引數 *start* 和 *end* 的直譯都跟在切片 (slice) 表示法中一樣,在此用於限定搜尋範圍在 list 中一個特定子序列。回傳的索引值,對應完整序列的開頭,而非對應 *start* 引數(子序列的開頭)。 "
9697
9798#: ../../tutorial/datastructures.rst:78
9899msgid "Return the number of times *x* appears in the list."