@@ -11,7 +11,7 @@ msgid ""
11
11
msgstr ""
12
12
"Project-Id-Version : Python 3.11\n "
13
13
"Report-Msgid-Bugs-To : \n "
14
- "POT-Creation-Date : 2025-01-03 15:28 +0000\n "
14
+ "POT-Creation-Date : 2025-09-22 02:03 +0000\n "
15
15
"PO-Revision-Date : 2025-09-21 20:44+0000\n "
16
16
"Last-Translator : python-doc bot, 2025\n "
17
17
"Language-Team : Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n "
@@ -156,7 +156,7 @@ msgstr ""
156
156
msgid ""
157
157
"Return an accurate floating point sum of values in the iterable. Avoids "
158
158
"loss of precision by tracking multiple intermediate partial sums::"
159
- msgstr ""
159
+ msgstr "返回迭代中的精确浮点值。通过跟踪多个中间部分和来避免精度损失:: "
160
160
161
161
#: ../../library/math.rst:118
162
162
msgid ""
@@ -307,11 +307,11 @@ msgstr "返回 *x* 的小数和整数部分。两个结果都带有 *x* 的符
307
307
308
308
#: ../../library/math.rst:234
309
309
msgid "Return the next floating-point value after *x* towards *y*."
310
- msgstr ""
310
+ msgstr "返回 *x* 趋向于 *y* 的最接近的浮点数值。 "
311
311
312
312
#: ../../library/math.rst:236
313
313
msgid "If *x* is equal to *y*, return *y*."
314
- msgstr ""
314
+ msgstr "如果 *x* 等于 *y* 则返回 *y*。 "
315
315
316
316
#: ../../library/math.rst:238
317
317
msgid "Examples:"
@@ -514,6 +514,10 @@ msgid ""
514
514
"<https://en.wikipedia.org/wiki/Loss_of_significance>`_\\ ; the :func:`expm1` "
515
515
"function provides a way to compute this quantity to full precision::"
516
516
msgstr ""
517
+ "返回 *e* 的 *x* 次幂,减1。这里 *e* 是自然对数的基数。对于小浮点数 *x* , ``exp(x) - 1`` 中的减法可能导致 "
518
+ "`significant loss of precision "
519
+ "<https://en.wikipedia.org/wiki/Loss_of_significance>`_\\ ; :func:`expm1` "
520
+ "函数提供了一种将此数量计算为全精度的方法::"
517
521
518
522
#: ../../library/math.rst:387
519
523
msgid "With one argument, return the natural logarithm of *x* (to base *e*)."
@@ -692,6 +696,8 @@ msgid ""
692
696
"are analogs of trigonometric functions that are based on hyperbolas instead "
693
697
"of circles."
694
698
msgstr ""
699
+ "`双曲函数 <https://en.wikipedia.org/wiki/Hyperbolic_function>`_ "
700
+ "是基于双曲线而非圆来对三角函数进行模拟。"
695
701
696
702
#: ../../library/math.rst:543
697
703
msgid "Return the inverse hyperbolic cosine of *x*."
@@ -801,6 +807,10 @@ msgid ""
801
807
":func:`isnan` function to test for NaNs instead of ``is`` or ``==``. "
802
808
"Example::"
803
809
msgstr ""
810
+ "一个浮点的 \" 非数字\" (NaN)值。相当于 ``float('nan')`` 的输出。 由于 `IEEE-754标准 "
811
+ "<https://en.wikipedia.org/wiki/IEEE_754>`_ 的要求, ``math.nan`` 和 "
812
+ "``float('nan')`` 不被认为等于任何其他数值,包括其本身。要检查一个数字是否为NaN,请使用 :func:`isnan` 函数来测试 "
813
+ "NaN ,而不是 ``is`` 或 ``==`` 。 例子::"
804
814
805
815
#: ../../library/math.rst:671
806
816
msgid "It is now always available."
0 commit comments