@@ -6,14 +6,14 @@ msgstr ""
6
6
"Project-Id-Version : Python 3\n "
7
7
"Report-Msgid-Bugs-To : \n "
8
8
"POT-Creation-Date : 2022-03-18 17:06+0100\n "
9
- "PO-Revision-Date : 2021-09-25 11:38 +0200\n "
9
+ "PO-Revision-Date : 2022-04-24 16:31 +0200\n "
10
10
"
Last-Translator :
Mathieu Dupuy <[email protected] >\n "
11
11
"
Language-Team :
FRENCH <[email protected] >\n "
12
12
"Language : fr\n "
13
13
"MIME-Version : 1.0\n "
14
14
"Content-Type : text/plain; charset=UTF-8\n "
15
15
"Content-Transfer-Encoding : 8bit\n "
16
- "X-Generator : Poedit 2.3.1 \n "
16
+ "X-Generator : Poedit 2.4.2 \n "
17
17
18
18
#: tutorial/floatingpoint.rst:9
19
19
msgid "Floating Point Arithmetic: Issues and Limitations"
@@ -25,14 +25,14 @@ msgid ""
25
25
"(binary) fractions. For example, the decimal fraction ::"
26
26
msgstr ""
27
27
"Les nombres à virgule flottante sont représentés, au niveau matériel, en "
28
- "fractions de nombres binaires (base 2). Par exemple, la fraction décimale ::"
28
+ "fractions de nombres binaires (base 2). Par exemple, la fraction décimale ::"
29
29
30
30
#: tutorial/floatingpoint.rst:19
31
31
msgid ""
32
32
"has value 1/10 + 2/100 + 5/1000, and in the same way the binary fraction ::"
33
33
msgstr ""
34
34
"a la valeur 1/10 + 2/100 + 5/1000 et, de la même manière, la fraction "
35
- "binaire ::"
35
+ "binaire ::"
36
36
37
37
#: tutorial/floatingpoint.rst:23
38
38
msgid ""
@@ -66,7 +66,7 @@ msgstr ""
66
66
67
67
#: tutorial/floatingpoint.rst:41
68
68
msgid "or, better, ::"
69
- msgstr "ou, mieux, ::"
69
+ msgstr "ou, mieux ::"
70
70
71
71
#: tutorial/floatingpoint.rst:45
72
72
msgid ""
@@ -86,7 +86,7 @@ msgid ""
86
86
msgstr ""
87
87
"De la même manière, peu importe combien de décimales en base 2 vous "
88
88
"utilisez, la valeur décimale 0.1 ne peut pas être représentée exactement en "
89
- "fraction binaire. En base 2, 1/10 est le nombre périodique suivant ::"
89
+ "fraction binaire. En base 2, 1/10 est le nombre périodique suivant ::"
90
90
91
91
#: tutorial/floatingpoint.rst:55
92
92
msgid ""
@@ -116,7 +116,7 @@ msgstr ""
116
116
"il est facile d'oublier que la valeur stockée est une approximation de la "
117
117
"fraction décimale d'origine. Python n'affiche qu'une approximation décimale "
118
118
"de la valeur stockée en binaire. Si Python devait afficher la vraie valeur "
119
- "décimale de l'approximation binaire stockée pour 0,1, il afficherait ::"
119
+ "décimale de l'approximation binaire stockée pour 0,1, il afficherait ::"
120
120
121
121
#: tutorial/floatingpoint.rst:71
122
122
msgid ""
@@ -125,7 +125,7 @@ msgid ""
125
125
msgstr ""
126
126
"C'est bien plus de décimales que ce qu'attendent la plupart des "
127
127
"utilisateurs, donc Python affiche une valeur arrondie afin d'améliorer la "
128
- "lisibilité ::"
128
+ "lisibilité ::"
129
129
130
130
#: tutorial/floatingpoint.rst:77
131
131
msgid ""
@@ -230,7 +230,6 @@ msgstr ""
230
230
"arrondir deux valeurs inexactes et pouvoir les comparer ::"
231
231
232
232
#: tutorial/floatingpoint.rst:134
233
- #, fuzzy
234
233
msgid ""
235
234
"Binary floating-point arithmetic holds many surprises like this. The "
236
235
"problem with \" 0.1\" is explained in precise detail below, in the "
@@ -404,11 +403,10 @@ msgstr ""
404
403
msgid ""
405
404
"Why is that? 1/10 is not exactly representable as a binary fraction. Almost "
406
405
"all machines today (November 2000) use IEEE-754 floating point arithmetic, "
407
- "and almost all platforms map Python floats to IEEE-754 \" double "
408
- "precision\" . 754 doubles contain 53 bits of precision, so on input the "
409
- "computer strives to convert 0.1 to the closest fraction it can of the form "
410
- "*J*/2**\\ *N* where *J* is an integer containing exactly 53 bits. "
411
- "Rewriting ::"
406
+ "and almost all platforms map Python floats to IEEE-754 \" double precision"
407
+ "\" . 754 doubles contain 53 bits of precision, so on input the computer "
408
+ "strives to convert 0.1 to the closest fraction it can of the form *J*/2**\\ "
409
+ "*N* where *J* is an integer containing exactly 53 bits. Rewriting ::"
412
410
msgstr ""
413
411
"Pourquoi ? 1/10 n'est pas représentable de manière exacte en fraction "
414
412
"binaire. Cependant, toutes les machines d'aujourd'hui (novembre 2000) "
@@ -418,11 +416,11 @@ msgstr ""
418
416
"double précision » utilisent 53 bits de précision donc, à la lecture, "
419
417
"l'ordinateur essaie de convertir 0,1 dans la fraction la plus proche "
420
418
"possible de la forme *J*/2**\\ *N* avec *J* un nombre entier d'exactement 53 "
421
- "bits. Pour réécrire ::"
419
+ "bits. Pour réécrire ::"
422
420
423
421
#: tutorial/floatingpoint.rst:229
424
422
msgid "as ::"
425
- msgstr "en ::"
423
+ msgstr "en ::"
426
424
427
425
#: tutorial/floatingpoint.rst:233
428
426
msgid ""
@@ -488,7 +486,7 @@ msgid ""
488
486
"If we multiply that fraction by 10\\ *\\ *55, we can see the value out to 55 "
489
487
"decimal digits::"
490
488
msgstr ""
491
- "Si nous multiplions cette fraction par 10\\ *\\ *30 , nous pouvons observer les "
489
+ "Si nous multiplions cette fraction par 10\\ *\\ *55 , nous pouvons observer les "
492
490
"valeurs de ses 55 décimales de poids fort ::"
493
491
494
492
#: tutorial/floatingpoint.rst:276
0 commit comments