@@ -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-03 07:57 +0000\n "
17
+ "PO-Revision-Date : 2018-06-05 04:37 +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 "
@@ -46,13 +46,13 @@ msgstr "List(串列)這個資料型態,具有更多操作的方法。下
46
46
#: ../../tutorial/datastructures.rst:22
47
47
msgid ""
48
48
"Add an item to the end of the list. Equivalent to ``a[len(a):] = [x]``."
49
- msgstr "將一個新的項目加到 list 的尾端。等同於 ``a[len(a):] = [x]`` 。"
49
+ msgstr "將一個新的項目加到 list 的尾端。等同於 ``a[len(a):] = [x]``。"
50
50
51
51
#: ../../tutorial/datastructures.rst:28
52
52
msgid ""
53
53
"Extend the list by appending all the items from the iterable. Equivalent to"
54
54
" ``a[len(a):] = iterable``."
55
- msgstr "將串列接上此 iterable(可列舉物件)中所有項目 。等同於 ``a[len(a):] = iterable``。"
55
+ msgstr "將 iterable(可列舉物件)接到 list 的尾端 。等同於 ``a[len(a):] = iterable``。"
56
56
57
57
#: ../../tutorial/datastructures.rst:35
58
58
msgid ""
@@ -85,15 +85,15 @@ 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* 的項目的索引值(從零開始)。如果沒有這樣一個項目 ,就丟出 :exc:`ValueError`。"
88
+ msgstr "回傳 list 中第一個是 *x* 的項目之從零開始的索引值。若 list 中無此項目 ,就丟出 :exc:`ValueError`。"
89
89
90
90
#: ../../tutorial/datastructures.rst:69
91
91
msgid ""
92
92
"The optional arguments *start* and *end* are interpreted as in the slice "
93
93
"notation and are used to limit the search to a particular subsequence of the"
94
94
" list. The returned index is computed relative to the beginning of the full"
95
95
" sequence rather than the *start* argument."
96
- msgstr "可選的引數 *start* 和 *end* 的直譯都跟在切片 ( slice) 表示法中一樣,在此用於限定搜尋範圍在 list 中一個特定子序列。回傳的索引值,對應完整序列的開頭,而非對應 *start* 引數(子序列的開頭) 。"
96
+ msgstr "引數 *start* 和 *end* 的定義跟在 slice 表示法中相同,搜尋的動作被這兩個引數限定在 list 中特定的子序列。但要注意的是,回傳的索引值是從 list 的開頭開始算,而不是從 *start* 開始算 。"
97
97
98
98
#: ../../tutorial/datastructures.rst:78
99
99
msgid "Return the number of times *x* appears in the list."
0 commit comments