@@ -86,13 +86,15 @@ msgstr ""
86
86
msgid ""
87
87
"Return the number of ways to choose *k* items from *n* items without "
88
88
"repetition and without order."
89
- msgstr ""
89
+ msgstr "*n* 個の中から *k* 個を重複無く順序をつけずに選ぶ方法の数を返します。 "
90
90
91
91
#: ../../library/math.rst:44
92
92
msgid ""
93
93
"Evaluates to ``n! / (k! * (n - k)!)`` when ``k <= n`` and evaluates to zero "
94
94
"when ``k > n``."
95
95
msgstr ""
96
+ "``k <= n`` のとき ``n! / (k! * (n - k)!)`` と評価し、``k > n`` のとき 0 と評"
97
+ "価します。"
96
98
97
99
#: ../../library/math.rst:47
98
100
msgid ""
@@ -106,6 +108,8 @@ msgid ""
106
108
"Raises :exc:`TypeError` if either of the arguments are not integers. Raises :"
107
109
"exc:`ValueError` if either of the arguments are negative."
108
110
msgstr ""
111
+ "いずれかの引数が整数でないなら :exc:`TypeError` を送出します。いずれかの引数"
112
+ "が負であれば :exc:`ValueError` を送出します。"
109
113
110
114
#: ../../library/math.rst:59
111
115
msgid ""
@@ -131,7 +135,7 @@ msgstr ""
131
135
132
136
#: ../../library/math.rst:74
133
137
msgid "Accepting floats with integral values (like ``5.0``) is deprecated."
134
- msgstr ""
138
+ msgstr "(``5.0`` のような) 整数値を持つ浮動小数点数を受け取るのは非推奨です。 "
135
139
136
140
#: ../../library/math.rst:80
137
141
msgid ""
@@ -221,12 +225,17 @@ msgid ""
221
225
"zero, then the returned value is ``0``. ``gcd()`` without arguments returns "
222
226
"``0``."
223
227
msgstr ""
228
+ "指定された整数引数の最大公約数を返します。0 でない引数があれば、返される値は"
229
+ "全ての引数の約数である最大の正の整数です。全ての引数が 0 なら、返される値は "
230
+ "``0`` です。引数の無い ``gcd()`` は ``0`` を返します。"
224
231
225
232
#: ../../library/math.rst:139
226
233
msgid ""
227
234
"Added support for an arbitrary number of arguments. Formerly, only two "
228
235
"arguments were supported."
229
236
msgstr ""
237
+ "任意の数の引数のサポートが追加されました。以前は、二つの引数のみがサポートさ"
238
+ "れていました。"
230
239
231
240
#: ../../library/math.rst:146
232
241
msgid ""
@@ -319,6 +328,8 @@ msgid ""
319
328
"floor of the exact square root of *n*, or equivalently the greatest integer "
320
329
"*a* such that *a*\\ ² |nbsp| ≤ |nbsp| *n*."
321
330
msgstr ""
331
+ "非負整数 *n* の整数平方根を返します。これは *n* の正確な平方根の床であり、 "
332
+ "*a*\\ ² |nbsp| ≤ |nbsp| *n* を満たす最大の整数 *a* と等価です。"
322
333
323
334
#: ../../library/math.rst:201
324
335
msgid ""
@@ -327,6 +338,9 @@ msgid ""
327
338
"the exact square root of *n*. For positive *n*, this can be computed using "
328
339
"``a = 1 + isqrt(n - 1)``."
329
340
msgstr ""
341
+ "少し応用すれば、*n* |nbsp| ≤ |nbsp| *a*\\ ² を満たす最小の整数 *a* 、言い換え"
342
+ "れば *n* の正確な平方根の天井を効率的に得られます。正の *n* に対して、これは "
343
+ "``a = 1 + isqrt(n - 1)`` を使って計算できます。"
330
344
331
345
#: ../../library/math.rst:211
332
346
msgid ""
@@ -336,6 +350,9 @@ msgid ""
336
350
"zero, then the returned value is ``0``. ``lcm()`` without arguments returns "
337
351
"``1``."
338
352
msgstr ""
353
+ "指定された整数引数の最小公倍数を返します。全ての引数が 0 でなければ、返される"
354
+ "値は全ての引数の倍数である最小の正の整数です。引数に 0 があれば、返される値"
355
+ "は ``0`` です。引数の無い ``lcm()`` は ``1`` を返します。"
339
356
340
357
#: ../../library/math.rst:222
341
358
msgid ""
@@ -357,7 +374,7 @@ msgstr ""
357
374
358
375
#: ../../library/math.rst:236
359
376
msgid "If *x* is equal to *y*, return *y*."
360
- msgstr ""
377
+ msgstr "*x* が *y* に等しければ、*y* を返します。 "
361
378
362
379
#: ../../library/math.rst:238
363
380
msgid "Examples:"
@@ -373,11 +390,12 @@ msgstr ""
373
390
374
391
#: ../../library/math.rst:242
375
392
msgid "``math.nextafter(x, 0.0)`` goes towards zero."
376
- msgstr ""
393
+ msgstr "``math.nextafter(x, 0.0)`` は 0 に近づきます。 "
377
394
378
395
#: ../../library/math.rst:243
379
396
msgid "``math.nextafter(x, math.copysign(math.inf, x))`` goes away from zero."
380
397
msgstr ""
398
+ "``math.nextafter(x, math.copysign(math.inf, x))`` は 0 から遠ざかります。"
381
399
382
400
#: ../../library/math.rst:245
383
401
msgid "See also :func:`math.ulp`."
@@ -387,32 +405,40 @@ msgstr ":func:`math.ulp` を参照してください。"
387
405
msgid ""
388
406
"Return the number of ways to choose *k* items from *n* items without "
389
407
"repetition and with order."
390
- msgstr ""
408
+ msgstr "*n* 個の中から *k* 個を重複無く順序をつけて選ぶ方法の数を返します。 "
391
409
392
410
#: ../../library/math.rst:254
393
411
msgid ""
394
412
"Evaluates to ``n! / (n - k)!`` when ``k <= n`` and evaluates to zero when "
395
413
"``k > n``."
396
414
msgstr ""
415
+ "``k <= n`` のとき ``n! / (n - k)!`` と評価し、``k > n`` のとき 0 と評価しま"
416
+ "す。"
397
417
398
418
#: ../../library/math.rst:257
399
419
msgid ""
400
420
"If *k* is not specified or is None, then *k* defaults to *n* and the "
401
421
"function returns ``n!``."
402
422
msgstr ""
423
+ "*k* が指定されていないか None であれば、*k* はデフォルトで *n* となりこの関数"
424
+ "は ``n!`` を返します。"
403
425
404
426
#: ../../library/math.rst:268
405
427
msgid ""
406
428
"Calculate the product of all the elements in the input *iterable*. The "
407
429
"default *start* value for the product is ``1``."
408
430
msgstr ""
431
+ "入力 *iterable* の全ての要素の積を計算します。積のデフォルト *start* 値は "
432
+ "``1`` です。"
409
433
410
434
#: ../../library/math.rst:271
411
435
msgid ""
412
436
"When the iterable is empty, return the start value. This function is "
413
437
"intended specifically for use with numeric values and may reject non-numeric "
414
438
"types."
415
439
msgstr ""
440
+ "イテラブルが空のとき、初期値を返します。この関数は特に数値に使うことを意図さ"
441
+ "れており、非数値を受け付けないことがあります。"
416
442
417
443
#: ../../library/math.rst:280
418
444
msgid ""
@@ -464,26 +490,29 @@ msgstr ""
464
490
465
491
#: ../../library/math.rst:307
466
492
msgid "Return the value of the least significant bit of the float *x*:"
467
- msgstr ""
493
+ msgstr "浮動小数点数 *x* の最下位ビットの値を返します: "
468
494
469
495
#: ../../library/math.rst:309
470
496
msgid "If *x* is a NaN (not a number), return *x*."
471
- msgstr ""
497
+ msgstr "*x* が NaN (非数) なら、*x* を返します。 "
472
498
473
499
#: ../../library/math.rst:310
474
500
msgid "If *x* is negative, return ``ulp(-x)``."
475
- msgstr ""
501
+ msgstr "*x* が負なら、``ulp(-x)`` を返します。 "
476
502
477
503
#: ../../library/math.rst:311
478
504
msgid "If *x* is a positive infinity, return *x*."
479
- msgstr ""
505
+ msgstr "*x* が正の無限大なら、*x* を返します。 "
480
506
481
507
#: ../../library/math.rst:312
482
508
msgid ""
483
509
"If *x* is equal to zero, return the smallest positive *denormalized* "
484
510
"representable float (smaller than the minimum positive *normalized* float, :"
485
511
"data:`sys.float_info.min <sys.float_info>`)."
486
512
msgstr ""
513
+ "*x* が 0 に等しければ、(最小の正の *正規化* 浮動小数点数 :data:`sys."
514
+ "float_info.min <sys.float_info>` よりも小さい) 最小の正の表現可能な *非正規化"
515
+ "* 浮動小数点数を返します。 "
487
516
488
517
#: ../../library/math.rst:315
489
518
msgid ""
0 commit comments