1
1
# SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) 2001-2024 , Python Software Foundation
2
+ # Copyright (C) 2001-2025 , Python Software Foundation
3
3
# This file is distributed under the same license as the Python package.
4
4
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
5
#
@@ -11,7 +11,7 @@ msgid ""
11
11
msgstr ""
12
12
"Project-Id-Version : Python 3.12\n "
13
13
"Report-Msgid-Bugs-To : \n "
14
- "POT-Creation-Date : 2024-11-12 09:11 +0000\n "
14
+ "POT-Creation-Date : 2025-04-04 14:56 +0000\n "
15
15
"PO-Revision-Date : 2024-05-11 00:33+0000\n "
16
16
"
Last-Translator :
Rafael Fontenelle <[email protected] >, 2024\n "
17
17
"Language-Team : Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n "
@@ -118,15 +118,12 @@ msgstr "下面的函数可用于原生直角坐标与极坐标的相互转换。
118
118
119
119
#: ../../library/cmath.rst:60
120
120
msgid ""
121
- "Return the phase of *x * (also known as the *argument* of *x *), as a float. "
122
- "``phase(x )`` is equivalent to ``math.atan2(x .imag, x .real)``. The result "
121
+ "Return the phase of *z * (also known as the *argument* of *z *), as a float. "
122
+ "``phase(z )`` is equivalent to ``math.atan2(z .imag, z .real)``. The result "
123
123
"lies in the range [-\\ *π*, *π*], and the branch cut for this operation lies"
124
124
" along the negative real axis. The sign of the result is the same as the "
125
- "sign of ``x .imag``, even when ``x .imag`` is zero::"
125
+ "sign of ``z .imag``, even when ``z .imag`` is zero::"
126
126
msgstr ""
127
- "将 *x* 的相位 (或称 *x* 的 *参数*) 作为一个浮点数返回。 ``phase(x)`` 等价于 ``math.atan2(x.imag, "
128
- "x.real)``。 结果将位于 [-\\ *π*, *π*] 范围内,且此操作的支割线将位于负实轴上。 结果的符号将与 ``x.imag`` "
129
- "的符号相同,即使 ``x.imag`` 的值为零::"
130
127
131
128
#: ../../library/cmath.rst:66
132
129
msgid ""
@@ -142,155 +139,144 @@ msgstr ""
142
139
143
140
#: ../../library/cmath.rst:74
144
141
msgid ""
145
- "The modulus (absolute value) of a complex number *x * can be computed using "
142
+ "The modulus (absolute value) of a complex number *z * can be computed using "
146
143
"the built-in :func:`abs` function. There is no separate :mod:`cmath` module"
147
144
" function for this operation."
148
145
msgstr ""
149
- "一个复数 *x* 的模数(绝对值)可以通过内置函数 :func:`abs` 计算。没有单独的 :mod:`cmath` 模块函数用于这个操作。"
150
146
151
147
#: ../../library/cmath.rst:81
152
148
msgid ""
153
- "Return the representation of *x * in polar coordinates. Returns a pair ``(r,"
154
- " phi)`` where *r* is the modulus of *x * and phi is the phase of *x *. "
155
- "``polar(x )`` is equivalent to ``(abs(x ), phase(x ))``."
149
+ "Return the representation of *z * in polar coordinates. Returns a pair ``(r,"
150
+ " phi)`` where *r* is the modulus of *z * and * phi* is the phase of *z *. "
151
+ "``polar(z )`` is equivalent to ``(abs(z ), phase(z ))``."
156
152
msgstr ""
157
- "在极坐标中返回 *x* 的表达方式。返回一个数对 ``(r, phi)``,*r* 是 *x* 的模数,*phi* 是 *x* 的相位角。 "
158
- "``polar(x)`` 相当于 ``(abs(x), phase(x))``。"
159
153
160
154
#: ../../library/cmath.rst:89
161
155
msgid ""
162
- "Return the complex number *x * with polar coordinates *r* and *phi*. "
156
+ "Return the complex number *z * with polar coordinates *r* and *phi*. "
163
157
"Equivalent to ``complex(r * math.cos(phi), r * math.sin(phi))``."
164
158
msgstr ""
165
- "使用极坐标形式 *r* 和 *phi* 返回复数 *x* 的值。 相当于 ``complex(r * math.cos(phi), r * "
166
- "math.sin(phi))``。"
167
159
168
160
#: ../../library/cmath.rst:94
169
161
msgid "Power and logarithmic functions"
170
162
msgstr "幂函数与对数函数"
171
163
172
164
#: ../../library/cmath.rst:98
173
165
msgid ""
174
- "Return *e* raised to the power *x *, where *e* is the base of natural "
166
+ "Return *e* raised to the power *z *, where *e* is the base of natural "
175
167
"logarithms."
176
- msgstr "返回 *e* 的 *x* 次方,*e* 是自然对数的底数。 "
168
+ msgstr ""
177
169
178
170
#: ../../library/cmath.rst:104
179
171
msgid ""
180
- "Returns the logarithm of *x * to the given *base*. If the *base* is not "
181
- "specified, returns the natural logarithm of *x *. There is one branch cut, "
172
+ "Return the logarithm of *z * to the given *base*. If the *base* is not "
173
+ "specified, returns the natural logarithm of *z *. There is one branch cut, "
182
174
"from 0 along the negative real axis to -∞."
183
175
msgstr ""
184
- "返回 *x* 的以 *base* 为底的对数。 如果没有指定 *base*,则返回 *x* 的自然对数。 存在一条支割线,即沿着负实轴从 0 到 -∞。"
185
176
186
177
#: ../../library/cmath.rst:111
187
178
msgid ""
188
- "Return the base-10 logarithm of *x *. This has the same branch cut as "
179
+ "Return the base-10 logarithm of *z *. This has the same branch cut as "
189
180
":func:`log`."
190
- msgstr "返回底数为 10 的 *x* 的对数。它具有与 :func:`log` 相同的支割线。 "
181
+ msgstr ""
191
182
192
183
#: ../../library/cmath.rst:117
193
184
msgid ""
194
- "Return the square root of *x *. This has the same branch cut as :func:`log`."
195
- msgstr "返回 *x* 的平方根。 它具有与 :func:`log` 相同的支割线。 "
185
+ "Return the square root of *z *. This has the same branch cut as :func:`log`."
186
+ msgstr ""
196
187
197
188
#: ../../library/cmath.rst:121
198
189
msgid "Trigonometric functions"
199
190
msgstr "三角函数"
200
191
201
192
#: ../../library/cmath.rst:125
202
193
msgid ""
203
- "Return the arc cosine of *x *. There are two branch cuts: One extends right "
194
+ "Return the arc cosine of *z *. There are two branch cuts: One extends right "
204
195
"from 1 along the real axis to ∞. The other extends left from -1 along the "
205
196
"real axis to -∞."
206
- msgstr "返回 *x* 的反余弦。 存在两条支割线:一条沿着实轴从 1 到 ∞。 另一条沿着实轴从 -1 向左延伸到 -∞。 "
197
+ msgstr ""
207
198
208
199
#: ../../library/cmath.rst:132
209
200
msgid ""
210
- "Return the arc sine of *x *. This has the same branch cuts as :func:`acos`."
211
- msgstr "返回 *x* 的反正弦。它与 :func:`acos` 有相同的支割线。 "
201
+ "Return the arc sine of *z *. This has the same branch cuts as :func:`acos`."
202
+ msgstr ""
212
203
213
204
#: ../../library/cmath.rst:137
214
205
msgid ""
215
- "Return the arc tangent of *x *. There are two branch cuts: One extends from "
206
+ "Return the arc tangent of *z *. There are two branch cuts: One extends from "
216
207
"``1j`` along the imaginary axis to ``∞j``. The other extends from ``-1j`` "
217
208
"along the imaginary axis to ``-∞j``."
218
209
msgstr ""
219
- "返回 *x* 的反正切。 存在两条支割线:一条沿着虚轴从 ``1j`` 延伸到 ``∞j``。 另一条沿着虚轴从 ``-1j`` 延伸到 "
220
- "``-∞j``。"
221
210
222
211
#: ../../library/cmath.rst:144
223
- msgid "Return the cosine of *x *."
224
- msgstr "返回 *x* 的余弦。 "
212
+ msgid "Return the cosine of *z *."
213
+ msgstr ""
225
214
226
215
#: ../../library/cmath.rst:149
227
- msgid "Return the sine of *x *."
228
- msgstr "返回 *x* 的正弦。 "
216
+ msgid "Return the sine of *z *."
217
+ msgstr ""
229
218
230
219
#: ../../library/cmath.rst:154
231
- msgid "Return the tangent of *x *."
232
- msgstr "返回 *x* 的正切。 "
220
+ msgid "Return the tangent of *z *."
221
+ msgstr ""
233
222
234
223
#: ../../library/cmath.rst:158
235
224
msgid "Hyperbolic functions"
236
225
msgstr "双曲函数"
237
226
238
227
#: ../../library/cmath.rst:162
239
228
msgid ""
240
- "Return the inverse hyperbolic cosine of *x *. There is one branch cut, "
229
+ "Return the inverse hyperbolic cosine of *z *. There is one branch cut, "
241
230
"extending left from 1 along the real axis to -∞."
242
- msgstr "返回 *x* 的反双曲余弦。 存在一条支割线,沿着实轴从 1 向左延伸到 -∞。 "
231
+ msgstr ""
243
232
244
233
#: ../../library/cmath.rst:168
245
234
msgid ""
246
- "Return the inverse hyperbolic sine of *x *. There are two branch cuts: One "
235
+ "Return the inverse hyperbolic sine of *z *. There are two branch cuts: One "
247
236
"extends from ``1j`` along the imaginary axis to ``∞j``. The other extends "
248
237
"from ``-1j`` along the imaginary axis to ``-∞j``."
249
238
msgstr ""
250
- "返回 *x* 的反双曲正弦。 存在两条支割线:一条沿着虚轴从 ``1j`` 延伸到 ``∞j``。 另一条沿着虚轴从 ``-1j`` 延伸到 "
251
- "``-∞j``。"
252
239
253
240
#: ../../library/cmath.rst:175
254
241
msgid ""
255
- "Return the inverse hyperbolic tangent of *x *. There are two branch cuts: One"
242
+ "Return the inverse hyperbolic tangent of *z *. There are two branch cuts: One"
256
243
" extends from ``1`` along the real axis to ``∞``. The other extends from "
257
244
"``-1`` along the real axis to ``-∞``."
258
245
msgstr ""
259
- "返回 *x* 反双曲正切。 存在两条支割线:一条沿着实轴从 ``1`` 延伸到 ``∞``。 另一条沿着实轴从 ``-1`` 延伸到 ``-∞``。"
260
246
261
247
#: ../../library/cmath.rst:182
262
- msgid "Return the hyperbolic cosine of *x *."
263
- msgstr "返回 *x* 的双曲余弦值。 "
248
+ msgid "Return the hyperbolic cosine of *z *."
249
+ msgstr ""
264
250
265
251
#: ../../library/cmath.rst:187
266
- msgid "Return the hyperbolic sine of *x *."
267
- msgstr "返回 *x* 的双曲正弦值。 "
252
+ msgid "Return the hyperbolic sine of *z *."
253
+ msgstr ""
268
254
269
255
#: ../../library/cmath.rst:192
270
- msgid "Return the hyperbolic tangent of *x *."
271
- msgstr "返回 *x* 的双曲正切值。 "
256
+ msgid "Return the hyperbolic tangent of *z *."
257
+ msgstr ""
272
258
273
259
#: ../../library/cmath.rst:196
274
260
msgid "Classification functions"
275
261
msgstr "分类函数"
276
262
277
263
#: ../../library/cmath.rst:200
278
264
msgid ""
279
- "Return ``True`` if both the real and imaginary parts of *x * are finite, and "
265
+ "Return ``True`` if both the real and imaginary parts of *z * are finite, and "
280
266
"``False`` otherwise."
281
- msgstr "如果 *x* 的实部和虚部都是有限的,则返回 ``True``,否则返回 ``False``。 "
267
+ msgstr ""
282
268
283
269
#: ../../library/cmath.rst:208
284
270
msgid ""
285
- "Return ``True`` if either the real or the imaginary part of *x * is an "
271
+ "Return ``True`` if either the real or the imaginary part of *z * is an "
286
272
"infinity, and ``False`` otherwise."
287
- msgstr "如果 *x* 的实部或者虚部是无穷大的,则返回 ``True``,否则返回 ``False``。 "
273
+ msgstr ""
288
274
289
275
#: ../../library/cmath.rst:214
290
276
msgid ""
291
- "Return ``True`` if either the real or the imaginary part of *x * is a NaN, "
277
+ "Return ``True`` if either the real or the imaginary part of *z * is a NaN, "
292
278
"and ``False`` otherwise."
293
- msgstr "如果 *x* 的实部或者虚部是 NaN,则返回 ``True`` ,否则返回 ``False``。 "
279
+ msgstr ""
294
280
295
281
#: ../../library/cmath.rst:220
296
282
msgid ""
0 commit comments