99# Meng Du <[email protected] >, 20191010# tianchang zhao <[email protected] >, 20191111# Freesand Leo <[email protected] >, 201912- # naisen xu <[email protected] >, 20191312#
1413#, fuzzy
1514msgid ""
@@ -18,7 +17,7 @@ msgstr ""
1817"Report-Msgid-Bugs-To : \n "
1918"POT-Creation-Date : 2019-05-18 11:29+0900\n "
2019"PO-Revision-Date : 2017-02-16 23:02+0000\n "
21- "Last-Translator : naisen xu <723648649@qq .com>, 2019\n "
20+ "Last-Translator : Freesand Leo <yuqinju@163 .com>, 2019\n "
2221"Language-Team : Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n "
2322"MIME-Version : 1.0\n "
2423"Content-Type : text/plain; charset=UTF-8\n "
@@ -62,8 +61,8 @@ msgid ""
6261"*Cartesian* coordinates. It is completely determined by its *real part* "
6362"``z.real`` and its *imaginary part* ``z.imag``. In other words::"
6463msgstr ""
65- "使用*矩形坐标*或 *笛卡尔坐标*在内部存储Python复数 ``z``。这完全取决于它的*实数部分* ``z.real`` "
66- "和*虚数部分* ``z.imag``。换句话说::"
64+ "使用 *矩形坐标* 或 *笛卡尔坐标* 在内部存储 Python 复数 ``z``。 这完全取决于它的 *实部* ``z.real`` 和 *虚部* "
65+ "``z.imag``。 换句话说::"
6766
6867#: ../../library/cmath.rst:35
6968msgid ""
@@ -74,7 +73,8 @@ msgid ""
7473"radians, from the positive x-axis to the line segment that joins the origin "
7574"to *z*."
7675msgstr ""
77- "*极坐标*提供了另一种复数的表示方法。在极坐标中,一个复数*z*由模量*r*和相位角*phi*来定义。模量*r*是从*z*到坐标原点的距离,而相位角*phi*是以弧度为单位的,逆时针的,从正X轴到连接原点和*z*的线段间夹角的角度。"
76+ "*极坐标* 提供了另一种复数的表示方法。在极坐标中,一个复数 *z* 由模量 *r* 和相位角 *phi* 来定义。模量 *r* 是从 *z* "
77+ "到坐标原点的距离,而相位角 *phi* 是以弧度为单位的,逆时针的,从正X轴到连接原点和 *z* 的线段间夹角的角度。"
7878
7979#: ../../library/cmath.rst:42
8080msgid ""
@@ -92,32 +92,33 @@ msgid ""
9292"means that the sign of the result is the same as the sign of ``x.imag``, "
9393"even when ``x.imag`` is zero::"
9494msgstr ""
95- "返回*x*的片段(也成为*x*的*参数*)作为一个浮点数。``phase(x)``相当于``math.atan2(x.imag, "
96- "x.real)``。结果处于 [-\\ *π*, "
97- "*π*]之间,以及这个操作的分支切断处于负实轴上,从上方连续。在支持有符号零的系统上(这包涵大多数当前的常用系统),这意味着结果的符号与 "
98- "``x.imag``的符号相同,即使 ``x.imag``的值是0::"
95+ "将 *x* 的相位 (也称为 *x* 的 *参数*) 返回为一个浮点数。``phase(x)`` 相当于 ``math.atan2(x.imag, "
96+ "x.real)``。 结果处于 [-\\ *π*, *π*] 之间,以及这个操作的分支切断处于负实轴上,从上方连续。 "
97+ "在支持有符号零的系统上(这包涵大多数当前的常用系统),这意味着结果的符号与 ``x.imag`` 的符号相同,即使 ``x.imag`` 的值是 0::"
9998
10099#: ../../library/cmath.rst:64
101100msgid ""
102101"The modulus (absolute value) of a complex number *x* can be computed using "
103102"the built-in :func:`abs` function. There is no separate :mod:`cmath` module"
104103" function for this operation."
105- msgstr "一个复数*x*的模数(绝对值)可以通过内置函数 :func:`abs` 计算。没有单独的:mod:`cmath`模块函数用于这个操作。"
104+ msgstr ""
105+ "一个复数 *x* 的模数(绝对值)可以通过内置函数 :func:`abs` 计算。没有单独的 :mod:`cmath` 模块函数用于这个操作。"
106106
107107#: ../../library/cmath.rst:71
108108msgid ""
109109"Return the representation of *x* in polar coordinates. Returns a pair ``(r,"
110110" phi)`` where *r* is the modulus of *x* and phi is the phase of *x*. "
111111"``polar(x)`` is equivalent to ``(abs(x), phase(x))``."
112112msgstr ""
113- "在极坐标中返回*x*的表达方式。返回一个数对``(r, "
114- "phi)``,*r*是*x*的模数,*phi*是*x*的相位角。`` polar(x)``相当于``(abs(x), phase(x))``。"
113+ "在极坐标中返回 *x* 的表达方式。返回一个数对 ``(r, phi)``,*r* 是 *x* 的模数,*phi* 是 *x* 的相位角。 "
114+ "`` polar(x)`` 相当于 ``(abs(x), phase(x))``。"
115115
116116#: ../../library/cmath.rst:79
117117msgid ""
118118"Return the complex number *x* with polar coordinates *r* and *phi*. "
119119"Equivalent to ``r * (math.cos(phi) + math.sin(phi)*1j)``."
120- msgstr "通过极坐标的*r*和*phi*返回复数*x*。相当于``r * (math.cos(phi) + math.sin(phi)*1j)``。"
120+ msgstr ""
121+ "通过极坐标的 *r* 和 *phi* 返回复数 *x*。相当于 ``r * (math.cos(phi) + math.sin(phi)*1j)``。"
121122
122123#: ../../library/cmath.rst:84
123124msgid "Power and logarithmic functions"
@@ -127,25 +128,27 @@ msgstr "幂函数与对数函数"
127128msgid ""
128129"Return *e* raised to the power *x*, where *e* is the base of natural "
129130"logarithms."
130- msgstr "返回*e*的 *x*次方,*e*是自然对数的基 。"
131+ msgstr "返回 *e* 的 *x* 次方,*e* 是自然对数的底数 。"
131132
132133#: ../../library/cmath.rst:94
133134msgid ""
134135"Returns the logarithm of *x* to the given *base*. If the *base* is not "
135136"specified, returns the natural logarithm of *x*. There is one branch cut, "
136137"from 0 along the negative real axis to -∞, continuous from above."
137- msgstr "返回给定*base*的*x*的对数。如果没有给定*base*,返回*x*的自然对数。那里是一个分支切断,从 0 到-∞,沿负实轴之上连续。"
138+ msgstr ""
139+ "返回给定 *base* 的 *x* 的对数。如果没有给定 *base*,返回 *x* 的自然对数。 那里是一个分支切断,从 0 "
140+ "到-∞,沿负实轴之上连续。"
138141
139142#: ../../library/cmath.rst:101
140143msgid ""
141144"Return the base-10 logarithm of *x*. This has the same branch cut as "
142145":func:`log`."
143- msgstr "返回底数为10的 *x*的对数。它具有与:func:`log`相同的分支切割 。"
146+ msgstr "返回底数为 10 的 *x* 的对数。它具有与 :func:`log` 相同的分歧点 。"
144147
145148#: ../../library/cmath.rst:107
146149msgid ""
147150"Return the square root of *x*. This has the same branch cut as :func:`log`."
148- msgstr ""
151+ msgstr "返回 *x* 的平方根。 它具有与 :func:`log` 相同的分歧点。 "
149152
150153#: ../../library/cmath.rst:111
151154msgid "Trigonometric functions"
0 commit comments