@@ -11,7 +11,7 @@ msgstr ""
11
11
"Project-Id-Version : Python 3.5 TW\n "
12
12
"Report-Msgid-Bugs-To : \n "
13
13
"POT-Creation-Date : 2016-11-18 18:19-0600\n "
14
- "PO-Revision-Date : 2016-11-27 19:13 +0000\n "
14
+ "PO-Revision-Date : 2016-11-27 19:31 +0000\n "
15
15
"
Last-Translator :
Liang Bo Wang <[email protected] >\n "
16
16
"Language-Team : Chinese Traditional (http://www.transifex.com/python-tw-doc/python-35-tw/language/zh-Hant/)\n "
17
17
"MIME-Version : 1.0\n "
@@ -148,13 +148,13 @@ msgid ""
148
148
"condition becomes false (with :keyword:`while`), but not when the loop is "
149
149
"terminated by a :keyword:`break` statement. This is exemplified by the "
150
150
"following loop, which searches for prime numbers::"
151
- msgstr ""
151
+ msgstr "迴圈可以帶有一個 ``else`` 段落。當迴圈歷遍选代的 list (在 :keyword:`for` 中)或條件為偽(在 :keyword:`while` 中)時,這個段落會被執行;但迴圈被 :keyword:`break` 陳述終止時則不會。底下尋找質數的迴圈即示範了這個行為:\n\n:: "
152
152
153
153
#: ../../tutorial/controlflow.rst:184
154
154
msgid ""
155
155
"(Yes, this is the correct code. Look closely: the ``else`` clause belongs "
156
156
"to the :keyword:`for` loop, **not** the :keyword:`if` statement.)"
157
- msgstr ""
157
+ msgstr "(沒錯,這是正確的程式碼。請看仔細:``else`` 段落屬於 :keyword:`for` 迴圈, \\ **並非** :keyword:`if` 陳述。) "
158
158
159
159
#: ../../tutorial/controlflow.rst:187
160
160
msgid ""
@@ -164,7 +164,7 @@ msgid ""
164
164
"when no exception occurs, and a loop's ``else`` clause runs when no "
165
165
"``break`` occurs. For more on the :keyword:`try` statement and exceptions, "
166
166
"see :ref:`tut-handling`."
167
- msgstr ""
167
+ msgstr "當 ``else`` 段落與迴圈使用時,相較於搭配 :keyword:`if` 陳述使用,它的行為與搭配 :keyword:`try` 陳述使用時更為相似: \\ :keyword:`try` 的 ``else`` 段落在沒有任何例外 (exception) 時執行,而迴圈的 ``else`` 段落在沒有任何 ``break`` 時執行。更多有關 :keyword:`try` 陳述和例外的介紹,見 \\ :ref:`tut-handling` \\ 。 "
168
168
169
169
#: ../../tutorial/controlflow.rst:194
170
170
msgid ""
0 commit comments