Skip to content

Commit 74a9ba6

Browse files
committed
add original text
1 parent 76e7611 commit 74a9ba6

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

library/math.po

+17-17
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgstr ""
88
"Project-Id-Version: Python 3.12\n"
99
"Report-Msgid-Bugs-To: \n"
1010
"POT-Creation-Date: 2024-03-14 00:03+0000\n"
11-
"PO-Revision-Date: 2024-02-05 16:30+0800\n"
11+
"PO-Revision-Date: 2024-04-26 14:35+0800\n"
1212
"Last-Translator: Adrian Liaw <adrianliaw2000@gmail.com>\n"
1313
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
1414
"tw)\n"
@@ -167,8 +167,8 @@ msgid ""
167167
"Return an accurate floating point sum of values in the iterable. Avoids "
168168
"loss of precision by tracking multiple intermediate partial sums."
169169
msgstr ""
170-
"回傳可疊代物件(iterable)中所有值的精確浮點數和。透過追蹤過程中多個部分和以"
171-
"避免精確度損失。"
170+
"回傳可疊代物件(iterable)中所有值的精確浮點數和。透過追蹤過程中多個部分和"
171+
"(partial sum)以避免精確度損失。"
172172

173173
#: ../../library/math.rst:113
174174
msgid ""
@@ -178,9 +178,9 @@ msgid ""
178178
"occasionally double-round an intermediate sum causing it to be off in its "
179179
"least significant bit."
180180
msgstr ""
181-
"此演算法準確性奠基於保證 IEEE-754 浮點標準及典型奇進偶捨模式。於有些非 "
182-
"Windows 平台建置時,底層 C 函式庫使用延伸精度加法運算,而可能導致對過程中同一"
183-
"部分和重複捨入,並使其最低有效位不如預期。"
181+
"此演算法準確性奠基於保證 IEEE-754 浮點標準及典型奇進偶捨(half-even)模式。於"
182+
"有些非 Windows 平台建置時,底層 C 函式庫使用延伸精度加法運算,而可能導致對過"
183+
"程中同一部分和重複捨入,並使其最低有效位不如預期。"
184184

185185
#: ../../library/math.rst:119
186186
msgid ""
@@ -199,9 +199,9 @@ msgid ""
199199
"zero, then the returned value is ``0``. ``gcd()`` without arguments returns "
200200
"``0``."
201201
msgstr ""
202-
"回傳指定整數引數的最大公因數。若存在任一非零引數,回傳值為所有引數共有因數中最大"
203-
"的正整數。若所有引數皆為零,則回傳值為 ``0``。``gcd()`` 若未傳入任何引數也將"
204-
"回傳 ``0``。"
202+
"回傳指定整數引數的最大公因數。若存在任一非零引數,回傳值為所有引數共有因數中"
203+
"最大的正整數。若所有引數皆為零,則回傳值為 ``0``。``gcd()`` 若未傳入任何引數"
204+
"也將回傳 ``0``。"
205205

206206
#: ../../library/math.rst:134
207207
msgid ""
@@ -281,8 +281,8 @@ msgstr "若 *x* 是正無限值或負無限值便回傳 ``True``,否則回傳
281281
msgid ""
282282
"Return ``True`` if *x* is a NaN (not a number), and ``False`` otherwise."
283283
msgstr ""
284-
"若 *x* 是 ``NaN`` ── 即非數字(NaN, not a number)── 便回傳 ``True``,否則回傳 "
285-
"``False``。"
284+
"若 *x* 是 ``NaN`` ── 即非數字(NaN, not a number)── 便回傳 ``True``,否則回"
285+
"``False``。"
286286

287287
#: ../../library/math.rst:192
288288
msgid ""
@@ -300,9 +300,9 @@ msgid ""
300300
"the exact square root of *n*. For positive *n*, this can be computed using "
301301
"``a = 1 + isqrt(n - 1)``."
302302
msgstr ""
303-
"於有些應用程式中,取得滿足 *n* |nbsp| ≤ |nbsp| *a*\\ ² 的最小整數值 *a* ── 或者說 *n* 精確平方根經"
304-
"上取整的值 ── 會更加方便。對正數 *n*,此值可使用 ``a = 1 + isqrt(n - 1)`` 計"
305-
"。"
303+
"於有些應用程式中,取得滿足 *n* |nbsp| ≤ |nbsp| *a*\\ ² 的最小整數值 *a* ── "
304+
"者說 *n* 精確平方根經上取整的值 ── 會更加方便。對正數 *n*,此值可使用 ``a = "
305+
"1 + isqrt(n - 1)`` 計算。"
306306

307307
#: ../../library/math.rst:206
308308
msgid ""
@@ -312,9 +312,9 @@ msgid ""
312312
"zero, then the returned value is ``0``. ``lcm()`` without arguments returns "
313313
"``1``."
314314
msgstr ""
315-
"回傳指定整數引數的最小公倍數。若所有引數值皆非零,回傳值為所有引數共有倍數中最小"
316-
"的正整數。若存在任一引數值為零,則回傳值為 ``0``。``lcm()`` 若未傳入任何引數"
317-
"將回傳 ``1``。"
315+
"回傳指定整數引數的最小公倍數。若所有引數值皆非零,回傳值為所有引數共有倍數中"
316+
"最小的正整數。若存在任一引數值為零,則回傳值為 ``0``。``lcm()`` 若未傳入任何"
317+
"引數將回傳 ``1``。"
318318

319319
#: ../../library/math.rst:217
320320
msgid ""

0 commit comments

Comments
 (0)