@@ -10,16 +10,16 @@ msgstr ""
1010"Project-Id-Version :Python 3.11\n "
1111"Report-Msgid-Bugs-To :\n "
1212"POT-Creation-Date :2023-06-30 15:31+0000\n "
13- "PO-Revision-Date :2023-01-04 14 :53+0800\n "
14- "Last-Translator :Phil Lin <linooohon @gmail.com>\n "
13+ "PO-Revision-Date :2023-07-02 22 :53+0800\n "
14+ "Last-Translator :Matt Wang <mattwang44 @gmail.com>\n "
1515"Language-Team :Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
1616"tw)\n "
1717"Language :zh_TW\n "
1818"MIME-Version :1.0\n "
1919"Content-Type :text/plain; charset=UTF-8\n "
2020"Content-Transfer-Encoding :8bit\n "
2121"Plural-Forms :nplurals=1; plural=0;\n "
22- "X-Generator :Poedit 3.2 .2\n "
22+ "X-Generator :Poedit 3.3 .2\n "
2323
2424#: ../../library/functions.rst:5 ../../library/functions.rst:11
2525msgid "Built-in Functions"
@@ -466,16 +466,15 @@ msgstr ""
466466"函式生成的字串和 Python 2 的 :func:`repr` 回傳的結果相似。"
467467
468468#: ../../library/functions.rst:123
469- #, fuzzy
470469msgid ""
471470"Convert an integer number to a binary string prefixed with\" 0b\" . The "
472471"result is a valid Python expression. If *x* is not a Python :class:`int` "
473472"object, it has to define an :meth:`~object.__index__` method that returns an "
474473"integer. Some examples:"
475474msgstr ""
476475"將一個整數轉變為一個前綴為\" 0b\" 的二進位制字串。結果是一個有效的 Python 運"
477- "算式。如果 *x* 不是 Python 的 :class:`int` 物件,那它需要定義 :meth:"
478- "` __index__` method 回傳一個整數。舉例來說:"
476+ "算式。如果 *x* 不是 Python 的 :class:`int` 物件,那它需要定義 :meth:`~object. "
477+ "__index__` method 回傳一個整數。舉例來說:"
479478
480479#: ../../library/functions.rst:133
481480msgid ""
@@ -890,15 +889,15 @@ msgstr ""
890889"果兩個引數都省略,則回傳 ``0j``。"
891890
892891#: ../../library/functions.rst:385
893- #, fuzzy
894892msgid ""
895893"For a general Python object ``x``, ``complex(x)`` delegates to ``x."
896894"__complex__()``. If :meth:`~object.__complex__` is not defined then it "
897895"falls back to :meth:`~object.__float__`. If :meth:`!__float__` is not "
898896"defined then it falls back to :meth:`~object.__index__`."
899897msgstr ""
900- "對於一般的 Python 物件 ``x``,``float(x)`` 指派給 ``x.__float__()``。如果未定"
901- "義 ``__float__()`` 則使用 :meth:`__index__`。"
898+ "對於一般的 Python 物件 ``x``,``complex(x)`` 指派給 ``x.__complex__()``。如果"
899+ "未定義 :meth:`~object.__complex__` 則會回退使用 :meth:`~object.__float__`。如"
900+ "果未定義 :meth:`!__float__` 則會回退使用 :meth:`~object.__index__`。"
902901
903902#: ../../library/functions.rst:392
904903msgid ""
@@ -1322,14 +1321,13 @@ msgstr ""
13221321"浮點數。如果引數在 Python 浮點精度範圍外,則會觸發 :exc:`OverflowError`。"
13231322
13241323#: ../../library/functions.rst:682
1325- #, fuzzy
13261324msgid ""
13271325"For a general Python object ``x``, ``float(x)`` delegates to ``x."
13281326"__float__()``. If :meth:`~object.__float__` is not defined then it falls "
13291327"back to :meth:`~object.__index__`."
13301328msgstr ""
13311329"對於一般的 Python 物件 ``x``,``float(x)`` 指派給 ``x.__float__()``。如果未定"
1332- "義`` __float__()`` 則使用 :meth:`__index__`。"
1330+ "義:meth:`~object. __float__` 則回退使用 :meth:`~object. __index__`。"
13331331
13341332#: ../../library/functions.rst:686
13351333msgid "If no argument is given, ``0.0`` is returned."
@@ -1510,15 +1508,14 @@ msgstr ""
15101508"加全面和一致。"
15111509
15121510#: ../../library/functions.rst:822
1513- #, fuzzy
15141511msgid ""
15151512"Convert an integer number to a lowercase hexadecimal string prefixed with "
15161513"\" 0x\" . If *x* is not a Python :class:`int` object, it has to define an :"
15171514"meth:`~object.__index__` method that returns an integer. Some examples:"
15181515msgstr ""
15191516"將整數轉換為以\" 0x\" 為前綴的小寫十六進位制字串。如果 *x* 不是 Python :"
1520- "class:`int` 物件,則必須定義一個 :meth:`__index__` method並且回傳一個整數。 "
1521- "舉例來說:"
1517+ "class:`int` 物件,則必須定義一個 :meth:`~object. __index__` method並且回傳一 "
1518+ "個整數。 舉例來說:"
15221519
15231520#: ../../library/functions.rst:831
15241521msgid ""
@@ -1617,7 +1614,6 @@ msgstr ""
16171614"result``。"
16181615
16191616#: ../../library/functions.rst:894
1620- #, fuzzy
16211617msgid ""
16221618"Return an integer object constructed from a number or string *x*, or return "
16231619"``0`` if no arguments are given. If *x* defines :meth:`~object.__int__`, "
@@ -1627,9 +1623,9 @@ msgid ""
16271623"truncates towards zero."
16281624msgstr ""
16291625"回傳一個使用數字或字串 *x* 建構的整數物件,或者在沒有引數時回傳 ``0``。如果 "
1630- "*x* 定義了 :meth:`__int__`,``int(x)`` 回傳 ``x.__int__()``。如果*x* 定義 "
1631- "了 :meth:`__index__` 則回傳 ``x.__index__()``。如果 *x*定義了 :meth: "
1632- "` __trunc__` 則回傳 ``x.__trunc__()``。對於浮點數則向零舍入。"
1626+ "*x* 定義了 :meth:`~object. __int__`,``int(x)`` 回傳 ``x.__int__()``。如果 "
1627+ "*x* 定義了 :meth:`~object. __index__` 則回傳 ``x.__index__()``。如果 *x*定義 "
1628+ "了 :meth:`~object. __trunc__` 則回傳 ``x.__trunc__()``。對於浮點數則向零舍入。"
16331629
16341630#: ../../library/functions.rst:901
16351631msgid ""
@@ -1941,7 +1937,6 @@ msgstr ""
19411937"給 :class:`object` class 的實例。"
19421938
19431939#: ../../library/functions.rst:1138
1944- #, fuzzy
19451940msgid ""
19461941"Convert an integer number to an octal string prefixed with\" 0o\" . The "
19471942"result is a valid Python expression. If *x* is not a Python :class:`int` "
@@ -1950,7 +1945,7 @@ msgid ""
19501945msgstr ""
19511946"將一個整數轉變為一個前綴為\" 0o\" 的八進位制字串。回傳結果是一個有效的 "
19521947"Python 運算式。如果 *x* 不是 Python 的 :class:`int` 物件,那它需要定義 :meth:"
1953- "`__index__` method 回傳一個整數。舉例來說:"
1948+ "`~object. __index__` method 回傳一個整數。舉例來說:"
19541949
19551950#: ../../library/functions.rst:1148
19561951msgid ""