@@ -11,7 +11,7 @@ msgstr ""
1111"Project-Id-Version : Python 3.9\n "
1212"Report-Msgid-Bugs-To : \n "
1313"POT-Creation-Date : 2020-06-20 18:08+0800\n "
14- "PO-Revision-Date : 2021-05-17 21:54 +0800\n "
14+ "PO-Revision-Date : 2021-06-08 13:21 +0800\n "
1515"Last-Translator : Ching-Hao Liu <chinghao.liu@gmail.com>\n "
1616"Language-Team : Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
1717"tw)\n "
@@ -52,9 +52,9 @@ msgid ""
5252msgstr ""
5353"在本手冊中的許多範例中,即便他們為互動式地輸入,仍然包含註解。Python 中的註"
5454"解 (comments) 由 hash 字元 ``#`` 開始一直到該行結束。註解可以從該行之首、空白"
55- "後、或程式碼之後開始,但不會出現在字串之中 。hash 字元在字串之中時仍視為一 "
56- "hash 字元。因為註解只是用來說明程式而不會被 Python 解讀,在練習範例時不一定要 "
57- "輸入 。"
55+ "後、或程式碼之後開始,但不會出現在字串文本 (string literal) 之中 。hash 字元在 "
56+ "字串文本之中時仍視為一 hash 字元。因為註解只是用來說明程式而不會被 Python 解 "
57+ "讀,在練習範例時不一定要輸入 。"
5858
5959#: ../../tutorial/introduction.rst:24
6060msgid "Some examples::"
@@ -241,9 +241,9 @@ msgid ""
241241"in the string, but it's possible to prevent this by adding a ``\\ `` at the "
242242"end of the line. The following example::"
243243msgstr ""
244- "字串值可以跨越數行 。其中一方式是使用三個重覆引號:\\ ``\"\"\" ...\"\"\" `` 或 "
245- "``'''...'''``\\ 。此時換行會被自動加入字串值中,但也可以在換行前加入 ``\\ `` "
246- "來取消這個行為。在以下的例子中:\n"
244+ "字串文本可以跨越數行 。其中一方式是使用三個重覆引號:\\ ``\"\"\" ...\"\"\" `` "
245+ "或 ``'''...'''``\\ 。此時換行會被自動加入字串值中,但也可以在換行前加入 ``"
246+ "\\ `` 來取消這個行為。在以下的例子中:\n"
247247"\n"
248248"::"
249249
@@ -267,7 +267,7 @@ msgid ""
267267"Two or more *string literals* (i.e. the ones enclosed between quotes) next "
268268"to each other are automatically concatenated. ::"
269269msgstr ""
270- "兩個以上相鄰的字串值 (*string literal*,即被引號包圍的字串)會被自動連接起"
270+ "兩個以上相鄰的字串文本 (*string literal*,即被引號包圍的字串)會被自動連接起"
271271"來:\n"
272272"\n"
273273"::"
@@ -440,15 +440,15 @@ msgstr ":ref:`string-methods`"
440440msgid ""
441441"Strings support a large number of methods for basic transformations and "
442442"searching."
443- msgstr "字串支援非常多種基本轉換和搜尋的方法 。"
443+ msgstr "字串支援非常多種基本轉換和搜尋的 method(方法) 。"
444444
445445#: ../../tutorial/introduction.rst:362
446446msgid ":ref:`f-strings`"
447447msgstr ":ref:`f-strings`"
448448
449449#: ../../tutorial/introduction.rst:362
450450msgid "String literals that have embedded expressions."
451- msgstr "包含有表示式的字串值 。"
451+ msgstr "包含有運算式的字串文本 。"
452452
453453#: ../../tutorial/introduction.rst:365
454454msgid ":ref:`formatstrings`"
@@ -467,8 +467,8 @@ msgid ""
467467"The old formatting operations invoked when strings are the left operand of "
468468"the ``%`` operator are described in more detail here."
469469msgstr ""
470- "在字串為 ``%`` 的左運算元時 ,將觸發舊的字串格式化操作,更多的細節在本連結中介 "
471- "紹 。"
470+ "在字串為 ``%`` 運算子的左運算元時 ,將觸發舊的字串格式化操作,更多的細節在本連 "
471+ "結中介紹 。"
472472
473473#: ../../tutorial/introduction.rst:375
474474msgid "Lists"
0 commit comments