@@ -306,7 +306,6 @@ msgid "negated object identity"
306306msgstr "否定的物件識別性"
307307
308308#: ../../library/stdtypes.rst:167
309- #, fuzzy
310309msgid ""
311310"Unless stated otherwise, objects of different types never compare equal. The "
312311"``==`` operator is always defined but for some object types (for example, "
@@ -315,7 +314,7 @@ msgid ""
315314"raise a :exc:`TypeError` exception when one of the arguments is a complex "
316315"number."
317316msgstr ""
318- "除了不同的數值型別外 ,不同型別的物件不能進行相��比較。運算子 ``==`` 總有定"
317+ "除非有另外聲明 ,不同型別的物件不能進行相等比較。運算子 ``==`` 總有定"
319318"義,但在某些物件型別(例如,class 物件)時,運算子會等同於 :keyword:`is`。其"
320319"他運算子 ``<``、``<=``、``>`` 及 ``>=`` 皆僅在有意義的部分有所定義;例如,當"
321320"其中一個引數為複數時,將引發一個 :exc:`TypeError` 的例外。"
@@ -3545,7 +3544,6 @@ msgid ""
35453544msgstr ""
35463545
35473546#: ../../library/stdtypes.rst:2266
3548- #, fuzzy
35493547msgid ""
35503548">>> 'Python'.ljust(10)\n"
35513549"'Python '\n"
@@ -3554,17 +3552,16 @@ msgid ""
35543552">>> 'Monty Python'.ljust(10, '.')\n"
35553553"'Monty Python'"
35563554msgstr ""
3557- ">>> 'Python'.center (10)\n"
3558- "' Python '\n"
3559- ">>> 'Python'.center (10, '- ')\n"
3560- "'-- Python-- '\n"
3561- ">>> 'Python'.center(4 )\n"
3562- "'Python'"
3555+ ">>> 'Python'.ljust (10)\n"
3556+ "'Python '\n"
3557+ ">>> 'Python'.ljust (10, '. ')\n"
3558+ "'Python.... '\n"
3559+ ">>> 'Monty Python'.ljust(10, '.' )\n"
3560+ "'Monty Python'"
35633561
35643562#: ../../library/stdtypes.rst:2275
3565- #, fuzzy
35663563msgid "See also :meth:`rjust`."
3567- msgstr "另請參閱 :meth:`split `。"
3564+ msgstr "另請參閱 :meth:`rjust `。"
35683565
35693566#: ../../library/stdtypes.rst:2280
35703567msgid ""
@@ -4392,6 +4389,16 @@ msgid ""
43924389">>> f'{one_third = :~>10}~'\n"
43934390"'one_third = ~~~~~~~1/3~'"
43944391msgstr ""
4392+ ">>> from fractions import Fraction\n"
4393+ ">>> one_third = Fraction(1, 3)\n"
4394+ ">>> f'{one_third:.6f}'\n"
4395+ "'0.333333'\n"
4396+ ">>> f'{one_third:_^+10}'\n"
4397+ "'___+1/3___'\n"
4398+ ">>> >>> f'{one_third!r:_^20}'\n"
4399+ "'___Fraction(1, 3)___'\n"
4400+ ">>> f'{one_third = :~>10}~'\n"
4401+ "'one_third = ~~~~~~~1/3~'"
43954402
43964403#: ../../library/stdtypes.rst:2802
43974404msgid "Template String Literals (t-strings)"
@@ -7759,7 +7766,6 @@ msgstr ""
77597766"(traceback) 資訊。否則,所有三個引數都是 ``None``。"
77607767
77617768#: ../../library/stdtypes.rst:5461
7762- #, fuzzy
77637769msgid ""
77647770"Returning a true value from this method will cause the :keyword:`with` "
77657771"statement to suppress the exception and continue execution with the "
@@ -7768,8 +7774,7 @@ msgid ""
77687774msgstr ""
77697775"從此方法回傳 true 值將導致 :keyword:`with` 陳述式抑制例外並繼續執行緊接著 :"
77707776"keyword:`!with` 陳述式之後的陳述式。否則,該例外將在該方法執行完畢後繼續傳播 "
7771- "(propagate)。執行此方法期間發生的例外會取代 :keyword:`!with` 陳述式主體中發生"
7772- "的任何例外。"
7777+ "(propagate)。"
77737778
77747779#: ../../library/stdtypes.rst:5466
77757780msgid ""
0 commit comments