@@ -92900,13 +92900,18 @@ msgid ""
9290092900"Further explanation is available in the FAQ entry :ref:`faq-multidimensional-"
9290192901"list`."
9290292902msgstr ""
92903+ "De plus amples explications sont disponibles dans la FAQ à la question :ref:"
92904+ "`faq-multidimensional-list`."
9290392905
9290492906#: ../Doc/library/stdtypes.rst:819
9290592907msgid ""
9290692908"If *i* or *j* is negative, the index is relative to the end of the string: "
9290792909"``len(s) + i`` or ``len(s) + j`` is substituted. But note that ``-0`` is "
9290892910"still ``0``."
9290992911msgstr ""
92912+ "Si *i* ou *j* est négatifs, l'indice est relatif à la fin de la chaîne : "
92913+ "``len(s) + i`` ou ``len(s) + j`` est substitué. Mais notez que ``-0`` est "
92914+ "toujours ``0``."
9291092915
9291192916#: ../Doc/library/stdtypes.rst:824
9291292917msgid ""
@@ -92916,6 +92921,11 @@ msgid ""
9291692921"*j* is omitted or ``None``, use ``len(s)``. If *i* is greater than or equal "
9291792922"to *j*, the slice is empty."
9291892923msgstr ""
92924+ "La tranche de *s* de *i* à *j* est définie comme la séquence d'éléments "
92925+ "d'indice *k* tels que ``i <= k < j``. Si *i* ou *j* est supérieur à "
92926+ "``len(s)``, ``len(s)`` est utilisé. Si *i* est omis ou ``None``, ``0` est "
92927+ "utilisé`. Si *j* est omis ou ``None``, ``len(s)`` est utilisé. Si *i* est "
92928+ "supérieure ou égale à *j*, la tranche est vide."
9291992929
9292092930#: ../Doc/library/stdtypes.rst:831
9292192931msgid ""
@@ -92928,6 +92938,14 @@ msgid ""
9292892938"*k*). Note, *k* cannot be zero. If *k* is ``None``, it is treated like "
9292992939"``1``."
9293092940msgstr ""
92941+ "La tranche de *s* de *i* à *j* avec un pas de *k* est définie comme la "
92942+ "séquenced'éléments d'indice ``x = i + n*k`` tels que ``0 <= n < (j-i)/k``. "
92943+ "En d'autres termes, les indices sont ``i``, ``i+k``, ``i+2*k``, ``i+3*k`` et "
92944+ "ainsi de suite, en arrêtant lorsque *j* est atteint (mais jamais inclus). Si "
92945+ "*i* ou *j* est supérieur à ``len(s)``, ``len(s)`` est utilisé. Si *i* ou *j* "
92946+ "sont omis ou ``None``, ils deviennent des valeurs \"extrêmes\" (où l'ordre "
92947+ "dépend du signe de *k*). Remarquez, *k* ne peut pas valoir zéro. Si *k* est "
92948+ "``None``, il est traité comme ``1``."
9293192949
9293292950#: ../Doc/library/stdtypes.rst:842
9293392951msgid ""
@@ -93747,7 +93765,7 @@ msgstr ""
9374793765
9374893766#: ../Doc/library/stdtypes.rst:1564
9374993767msgid "Mutable Sequence Types"
93750- msgstr ""
93768+ msgstr "Types de séquences mutables "
9375193769
9375293770#: ../Doc/library/stdtypes.rst:1570
9375393771msgid ""
@@ -93765,7 +93783,7 @@ msgstr "``s[i] = x``"
9376593783
9376693784#: ../Doc/library/stdtypes.rst:1597
9376793785msgid "item *i* of *s* is replaced by *x*"
93768- msgstr ""
93786+ msgstr "element *i* de *s* est remplacé par *x* "
9376993787
9377093788#: ../Doc/library/stdtypes.rst:1600
9377193789msgid "``s[i:j] = t``"
@@ -93775,30 +93793,31 @@ msgstr "``s[i:j] = t``"
9377593793msgid ""
9377693794"slice of *s* from *i* to *j* is replaced by the contents of the iterable *t*"
9377793795msgstr ""
93796+ "tranche de *s* de *i* à *j* est remplacée par le contenu de l'itérable *t*"
9377893797
9377993798#: ../Doc/library/stdtypes.rst:1604
9378093799msgid "``del s[i:j]``"
9378193800msgstr "``del s[i:j]``"
9378293801
9378393802#: ../Doc/library/stdtypes.rst:1604
9378493803msgid "same as ``s[i:j] = []``"
93785- msgstr ""
93804+ msgstr "identique à ``s[i:j] = []`` "
9378693805
9378793806#: ../Doc/library/stdtypes.rst:1606
9378893807msgid "``s[i:j:k] = t``"
9378993808msgstr "``s[i:j:k] = t``"
9379093809
9379193810#: ../Doc/library/stdtypes.rst:1606
9379293811msgid "the elements of ``s[i:j:k]`` are replaced by those of *t*"
93793- msgstr ""
93812+ msgstr "les éléments de ``s[i:j:k]`` sont remplacés par ceux de *t* "
9379493813
9379593814#: ../Doc/library/stdtypes.rst:1609
9379693815msgid "``del s[i:j:k]``"
9379793816msgstr "``del s[i:j:k]``"
9379893817
9379993818#: ../Doc/library/stdtypes.rst:1609
9380093819msgid "removes the elements of ``s[i:j:k]`` from the list"
93801- msgstr ""
93820+ msgstr "supprime les éléments de ``s[i:j:k]`` de la liste "
9380293821
9380393822#: ../Doc/library/stdtypes.rst:1612
9380493823msgid "``s.append(x)``"
@@ -93822,7 +93841,7 @@ msgstr "``s *= n``"
9382293841
9382393842#: ../Doc/library/stdtypes.rst:1618
9382493843msgid "updates *s* with its contents repeated *n* times"
93825- msgstr ""
93844+ msgstr "met à jour *s* avec son contenu répété *n* fois "
9382693845
9382793846#: ../Doc/library/stdtypes.rst:1618
9382893847msgid "\\(11)"
0 commit comments