@@ -66230,7 +66230,7 @@ msgstr ""
66230
66230
#: ../../src/Doc/library/logging.config.rst:439
66231
66231
#: ../../src/Doc/library/stdtypes.rst:2430
66232
66232
msgid "and::"
66233
- msgstr "et ::"
66233
+ msgstr "et : ::"
66234
66234
66235
66235
#: ../../src/Doc/library/logging.config.rst:446
66236
66236
msgid ""
@@ -105331,6 +105331,14 @@ msgid ""
105331
105331
"with a zero real part) which you can add to an integer or float to get a "
105332
105332
"complex number with real and imaginary parts."
105333
105333
msgstr ""
105334
+ "Les nombres sont créés par des littéraux numériques ou sont le résultat de "
105335
+ "fonctions natives ou d'opérateurs. Les entiers littéraux basiques (y compris "
105336
+ "leur forme hexadécimale, octale et binaire) donnent des entiers. Les nombres "
105337
+ "littéraux contenant un point décimal ou un exposant donnent des nombres à "
105338
+ "virgule flottante. Suffixer ``'j'`` ou ``'J'`` à un nombre littéral donne un "
105339
+ "nombre imaginaire (un nombre complexe avec une partie réelle nulle) que vous "
105340
+ "pouvez ajouter à un nombre entier ou un à virgule flottante pour obtenir un "
105341
+ "nombre complexe avec une partie réelle et une partie imaginaire."
105334
105342
105335
105343
#: ../../src/Doc/library/stdtypes.rst:264
105336
105344
msgid ""
@@ -105362,87 +105370,87 @@ msgstr ""
105362
105370
105363
105371
#: ../../src/Doc/library/stdtypes.rst:276
105364
105372
msgid "Full documentation"
105365
- msgstr ""
105373
+ msgstr "Documentation complète "
105366
105374
105367
105375
#: ../../src/Doc/library/stdtypes.rst:278
105368
105376
msgid "``x + y``"
105369
105377
msgstr "``x + y``"
105370
105378
105371
105379
#: ../../src/Doc/library/stdtypes.rst:278
105372
105380
msgid "sum of *x* and *y*"
105373
- msgstr ""
105381
+ msgstr "somme de *x* et *y* "
105374
105382
105375
105383
#: ../../src/Doc/library/stdtypes.rst:280
105376
105384
msgid "``x - y``"
105377
105385
msgstr "``x - y``"
105378
105386
105379
105387
#: ../../src/Doc/library/stdtypes.rst:280
105380
105388
msgid "difference of *x* and *y*"
105381
- msgstr ""
105389
+ msgstr "différence de *x* et *y* "
105382
105390
105383
105391
#: ../../src/Doc/library/stdtypes.rst:282
105384
105392
msgid "``x * y``"
105385
105393
msgstr "``x * y``"
105386
105394
105387
105395
#: ../../src/Doc/library/stdtypes.rst:282
105388
105396
msgid "product of *x* and *y*"
105389
- msgstr ""
105397
+ msgstr "produit de *x* et *y* "
105390
105398
105391
105399
#: ../../src/Doc/library/stdtypes.rst:284
105392
105400
msgid "``x / y``"
105393
105401
msgstr "``x / y``"
105394
105402
105395
105403
#: ../../src/Doc/library/stdtypes.rst:284
105396
105404
msgid "quotient of *x* and *y*"
105397
- msgstr ""
105405
+ msgstr "quotient de *x* et *y* "
105398
105406
105399
105407
#: ../../src/Doc/library/stdtypes.rst:286
105400
105408
msgid "``x // y``"
105401
105409
msgstr "``x // y``"
105402
105410
105403
105411
#: ../../src/Doc/library/stdtypes.rst:286
105404
105412
msgid "floored quotient of *x* and *y*"
105405
- msgstr ""
105413
+ msgstr "quotient entier de *x* et *y* "
105406
105414
105407
105415
#: ../../src/Doc/library/stdtypes.rst:289
105408
105416
msgid "``x % y``"
105409
105417
msgstr "``x % y``"
105410
105418
105411
105419
#: ../../src/Doc/library/stdtypes.rst:289
105412
105420
msgid "remainder of ``x / y``"
105413
- msgstr ""
105421
+ msgstr "reste de ``x / y`` "
105414
105422
105415
105423
#: ../../src/Doc/library/stdtypes.rst:291
105416
105424
msgid "``-x``"
105417
105425
msgstr "``-x``"
105418
105426
105419
105427
#: ../../src/Doc/library/stdtypes.rst:291
105420
105428
msgid "*x* negated"
105421
- msgstr ""
105429
+ msgstr "négatif de *x* "
105422
105430
105423
105431
#: ../../src/Doc/library/stdtypes.rst:293
105424
105432
msgid "``+x``"
105425
105433
msgstr "``+x``"
105426
105434
105427
105435
#: ../../src/Doc/library/stdtypes.rst:293
105428
105436
msgid "*x* unchanged"
105429
- msgstr ""
105437
+ msgstr "*x* inchangé "
105430
105438
105431
105439
#: ../../src/Doc/library/stdtypes.rst:295
105432
105440
msgid "``abs(x)``"
105433
105441
msgstr "``abs(x)``"
105434
105442
105435
105443
#: ../../src/Doc/library/stdtypes.rst:295
105436
105444
msgid "absolute value or magnitude of *x*"
105437
- msgstr ""
105445
+ msgstr "valeur absolue de *x* "
105438
105446
105439
105447
#: ../../src/Doc/library/stdtypes.rst:298
105440
105448
msgid "``int(x)``"
105441
105449
msgstr "``int(x)``"
105442
105450
105443
105451
#: ../../src/Doc/library/stdtypes.rst:298
105444
105452
msgid "*x* converted to integer"
105445
- msgstr ""
105453
+ msgstr "*x* converti en nombre entier "
105446
105454
105447
105455
#: ../../src/Doc/library/stdtypes.rst:298
105448
105456
msgid "\\(3)\\(6)"
@@ -105454,7 +105462,7 @@ msgstr "``float(x)``"
105454
105462
105455
105463
#: ../../src/Doc/library/stdtypes.rst:300
105456
105464
msgid "*x* converted to floating point"
105457
- msgstr ""
105465
+ msgstr "*x* converti en nombre à virgule flottante "
105458
105466
105459
105467
#: ../../src/Doc/library/stdtypes.rst:300
105460
105468
msgid "\\(4)\\(6)"
@@ -105469,22 +105477,24 @@ msgid ""
105469
105477
"a complex number with real part *re*, imaginary part *im*. *im* defaults to "
105470
105478
"zero."
105471
105479
msgstr ""
105480
+ "un nombre complexe avec *re* pour partie réelle et *im* pour partie "
105481
+ "imaginaire. *im* vaut zéro par défaut."
105472
105482
105473
105483
#: ../../src/Doc/library/stdtypes.rst:306
105474
105484
msgid "``c.conjugate()``"
105475
105485
msgstr "``c.conjugate()``"
105476
105486
105477
105487
#: ../../src/Doc/library/stdtypes.rst:306
105478
105488
msgid "conjugate of the complex number *c*"
105479
- msgstr ""
105489
+ msgstr "conjugué du nombre complexe *c* "
105480
105490
105481
105491
#: ../../src/Doc/library/stdtypes.rst:309
105482
105492
msgid "``divmod(x, y)``"
105483
105493
msgstr "``divmod(x, y)``"
105484
105494
105485
105495
#: ../../src/Doc/library/stdtypes.rst:309
105486
105496
msgid "the pair ``(x // y, x % y)``"
105487
- msgstr ""
105497
+ msgstr "la paire ``(x // y, x % y)`` "
105488
105498
105489
105499
#: ../../src/Doc/library/stdtypes.rst:311
105490
105500
msgid "``pow(x, y)``"
@@ -105493,7 +105503,7 @@ msgstr "``pow(x, y)``"
105493
105503
#: ../../src/Doc/library/stdtypes.rst:311
105494
105504
#: ../../src/Doc/library/stdtypes.rst:313
105495
105505
msgid "*x* to the power *y*"
105496
- msgstr ""
105506
+ msgstr "*x* à la puissance *y* "
105497
105507
105498
105508
#: ../../src/Doc/library/stdtypes.rst:313
105499
105509
msgid "``x ** y``"
@@ -105506,57 +105516,77 @@ msgid ""
105506
105516
"always rounded towards minus infinity: ``1//2`` is ``0``, ``(-1)//2`` is "
105507
105517
"``-1``, ``1//(-2)`` is ``-1``, and ``(-1)//(-2)`` is ``0``."
105508
105518
msgstr ""
105519
+ "Également appelé division entière. La valeur résultante est un nombre "
105520
+ "entier, bien que le type du résultat ne soit nécessairement *int*. Le "
105521
+ "résultat est toujours arrondi vers moins l'infini : ``1//2`` vaut ``0``, "
105522
+ "``(-1)//2`` vaut ``-1``, ``1//(-2)`` vaut ``-1``, et ``(-1)//(-2)`` vaut ``"
105523
+ "0``."
105509
105524
105510
105525
#: ../../src/Doc/library/stdtypes.rst:329
105511
105526
msgid ""
105512
105527
"Not for complex numbers. Instead convert to floats using :func:`abs` if "
105513
105528
"appropriate."
105514
105529
msgstr ""
105530
+ "Pas pour les nombres complexes. Convertissez-les plutôt en nombres flottants "
105531
+ "à l'aide de :func:`abs` si c'est approprié."
105515
105532
105516
105533
#: ../../src/Doc/library/stdtypes.rst:341
105517
105534
msgid ""
105518
105535
"Conversion from floating point to integer may round or truncate as in C; see "
105519
105536
"functions :func:`math.floor` and :func:`math.ceil` for well-defined "
105520
105537
"conversions."
105521
105538
msgstr ""
105539
+ "La conversion de virgule flottante en entier peut arrondir ou tronquer comme "
105540
+ "en C; voir les fonctions :func:`math.floor` et :func:`math.ceil` pour les "
105541
+ "conversions bien définies."
105522
105542
105523
105543
#: ../../src/Doc/library/stdtypes.rst:346
105524
105544
msgid ""
105525
105545
"float also accepts the strings \"nan\" and \"inf\" with an optional prefix "
105526
105546
"\"+\" or \"-\" for Not a Number (NaN) and positive or negative infinity."
105527
105547
msgstr ""
105548
+ "float accepte aussi les chauves \"nan\" et \"inf\" avec un préfixe optionnel "
105549
+ "\"+\" ou \"-\" pour Not a Number (NaN) et l'infini positif ou négatif."
105528
105550
105529
105551
#: ../../src/Doc/library/stdtypes.rst:350
105530
105552
msgid ""
105531
105553
"Python defines ``pow(0, 0)`` and ``0 ** 0`` to be ``1``, as is common for "
105532
105554
"programming languages."
105533
105555
msgstr ""
105556
+ "Python définit ``pow(0, 0)`` et ``0 ** 0`` valant ``1``, puisque c'est "
105557
+ "courant pour les langages de programmation."
105534
105558
105535
105559
#: ../../src/Doc/library/stdtypes.rst:354
105536
105560
msgid ""
105537
105561
"The numeric literals accepted include the digits ``0`` to ``9`` or any "
105538
105562
"Unicode equivalent (code points with the ``Nd`` property)."
105539
105563
msgstr ""
105564
+ "Les littéraux numériques acceptés comprennent les chiffres ``0`` à ``9`` ou "
105565
+ "tout équivalent Unicode (caractères avec la propriété ``Nd``)."
105540
105566
105541
105567
#: ../../src/Doc/library/stdtypes.rst:357
105542
105568
msgid ""
105543
105569
"See http://www.unicode.org/Public/8.0.0/ucd/extracted/DerivedNumericType.txt "
105544
105570
"for a complete list of code points with the ``Nd`` property."
105545
105571
msgstr ""
105572
+ "Voir http://www.unicode.org/Public/8.0.0/ucd/extracted/DerivedNumericType."
105573
+ "txt pour une liste complète des caractères avec la propriété ``Nd``."
105546
105574
105547
105575
#: ../../src/Doc/library/stdtypes.rst:361
105548
105576
msgid ""
105549
105577
"All :class:`numbers.Real` types (:class:`int` and :class:`float`) also "
105550
105578
"include the following operations:"
105551
105579
msgstr ""
105580
+ "Tous types :class:`numbers.Real` (:class:`int` et :class:`float`) "
105581
+ "comprennent également les opérations suivantes :"
105552
105582
105553
105583
#: ../../src/Doc/library/stdtypes.rst:367
105554
105584
msgid "``math.trunc(x)``"
105555
105585
msgstr "``math.trunc(x)``"
105556
105586
105557
105587
#: ../../src/Doc/library/stdtypes.rst:367
105558
105588
msgid "*x* truncated to Integral"
105559
- msgstr ""
105589
+ msgstr "*x* tronqué à l'entier vers zéro "
105560
105590
105561
105591
#: ../../src/Doc/library/stdtypes.rst:369
105562
105592
msgid "``round(x[, n])``"
@@ -105567,32 +105597,36 @@ msgid ""
105567
105597
"*x* rounded to n digits, rounding half to even. If n is omitted, it defaults "
105568
105598
"to 0."
105569
105599
msgstr ""
105600
+ "*x* arrondi à n chiffres, arrondissant la moitié au pair. Si n est omis, la "
105601
+ "valeur par défaut à 0."
105570
105602
105571
105603
#: ../../src/Doc/library/stdtypes.rst:373
105572
105604
msgid "``math.floor(x)``"
105573
105605
msgstr "``math.floor(x)``"
105574
105606
105575
105607
#: ../../src/Doc/library/stdtypes.rst:373
105576
105608
msgid "the greatest integral float <= *x*"
105577
- msgstr ""
105609
+ msgstr "le plus grand entier <= *x* "
105578
105610
105579
105611
#: ../../src/Doc/library/stdtypes.rst:375
105580
105612
msgid "``math.ceil(x)``"
105581
105613
msgstr "``math.ceil(x)``"
105582
105614
105583
105615
#: ../../src/Doc/library/stdtypes.rst:375
105584
105616
msgid "the least integral float >= *x*"
105585
- msgstr ""
105617
+ msgstr "le plus petit entier >= *x* "
105586
105618
105587
105619
#: ../../src/Doc/library/stdtypes.rst:378
105588
105620
msgid ""
105589
105621
"For additional numeric operations see the :mod:`math` and :mod:`cmath` "
105590
105622
"modules."
105591
105623
msgstr ""
105624
+ "Pour d'autres opérations numériques voir les modules :mod:`math` et :mod:"
105625
+ "`cmath`."
105592
105626
105593
105627
#: ../../src/Doc/library/stdtypes.rst:387
105594
105628
msgid "Bitwise Operations on Integer Types"
105595
- msgstr ""
105629
+ msgstr "Opérations sur les bits des nombres entiers "
105596
105630
105597
105631
#: ../../src/Doc/library/stdtypes.rst:399
105598
105632
msgid ""
0 commit comments