@@ -11,7 +11,7 @@ msgstr ""
11
11
"Project-Id-Version : Python 3.9\n "
12
12
"Report-Msgid-Bugs-To : \n "
13
13
"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 "
15
15
"Last-Translator : Ching-Hao Liu <chinghao.liu@gmail.com>\n "
16
16
"Language-Team : Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
17
17
"tw)\n "
@@ -52,9 +52,9 @@ msgid ""
52
52
msgstr ""
53
53
"在本手冊中的許多範例中,即便他們為互動式地輸入,仍然包含註解。Python 中的註"
54
54
"解 (comments) 由 hash 字元 ``#`` 開始一直到該行結束。註解可以從該行之首、空白"
55
- "後、或程式碼之後開始,但不會出現在字串之中 。hash 字元在字串之中時仍視為一 "
56
- "hash 字元。因為註解只是用來說明程式而不會被 Python 解讀,在練習範例時不一定要 "
57
- "輸入 。"
55
+ "後、或程式碼之後開始,但不會出現在字串文本 (string literal) 之中 。hash 字元在 "
56
+ "字串文本之中時仍視為一 hash 字元。因為註解只是用來說明程式而不會被 Python 解 "
57
+ "讀,在練習範例時不一定要輸入 。"
58
58
59
59
#: ../../tutorial/introduction.rst:24
60
60
msgid "Some examples::"
@@ -241,9 +241,9 @@ msgid ""
241
241
"in the string, but it's possible to prevent this by adding a ``\\ `` at the "
242
242
"end of the line. The following example::"
243
243
msgstr ""
244
- "字串值可以跨越數行 。其中一方式是使用三個重覆引號:\\ ``\"\"\" ...\"\"\" `` 或 "
245
- "``'''...'''``\\ 。此時換行會被自動加入字串值中,但也可以在換行前加入 ``\\ `` "
246
- "來取消這個行為。在以下的例子中:\n"
244
+ "字串文本可以跨越數行 。其中一方式是使用三個重覆引號:\\ ``\"\"\" ...\"\"\" `` "
245
+ "或 ``'''...'''``\\ 。此時換行會被自動加入字串值中,但也可以在換行前加入 ``"
246
+ "\\ `` 來取消這個行為。在以下的例子中:\n"
247
247
"\n"
248
248
"::"
249
249
@@ -267,7 +267,7 @@ msgid ""
267
267
"Two or more *string literals* (i.e. the ones enclosed between quotes) next "
268
268
"to each other are automatically concatenated. ::"
269
269
msgstr ""
270
- "兩個以上相鄰的字串值 (*string literal*,即被引號包圍的字串)會被自動連接起"
270
+ "兩個以上相鄰的字串文本 (*string literal*,即被引號包圍的字串)會被自動連接起"
271
271
"來:\n"
272
272
"\n"
273
273
"::"
@@ -440,15 +440,15 @@ msgstr ":ref:`string-methods`"
440
440
msgid ""
441
441
"Strings support a large number of methods for basic transformations and "
442
442
"searching."
443
- msgstr "字串支援非常多種基本轉換和搜尋的方法 。"
443
+ msgstr "字串支援非常多種基本轉換和搜尋的 method(方法) 。"
444
444
445
445
#: ../../tutorial/introduction.rst:362
446
446
msgid ":ref:`f-strings`"
447
447
msgstr ":ref:`f-strings`"
448
448
449
449
#: ../../tutorial/introduction.rst:362
450
450
msgid "String literals that have embedded expressions."
451
- msgstr "包含有表示式的字串值 。"
451
+ msgstr "包含有運算式的字串文本 。"
452
452
453
453
#: ../../tutorial/introduction.rst:365
454
454
msgid ":ref:`formatstrings`"
@@ -467,8 +467,8 @@ msgid ""
467
467
"The old formatting operations invoked when strings are the left operand of "
468
468
"the ``%`` operator are described in more detail here."
469
469
msgstr ""
470
- "在字串為 ``%`` 的左運算元時 ,將觸發舊的字串格式化操作,更多的細節在本連結中介 "
471
- "紹 。"
470
+ "在字串為 ``%`` 運算子的左運算元時 ,將觸發舊的字串格式化操作,更多的細節在本連 "
471
+ "結中介紹 。"
472
472
473
473
#: ../../tutorial/introduction.rst:375
474
474
msgid "Lists"
0 commit comments