summaryrefslogtreecommitdiffhomepage
path: root/fr-fr
diff options
context:
space:
mode:
authorC-Duv <github.accounts@claude.duvergier.fr>2013-10-11 10:13:12 +0200
committerC-Duv <github.accounts@claude.duvergier.fr>2013-10-11 10:13:12 +0200
commit200298c7691e0f0b78b7e879fcf7fc4909cea16a (patch)
tree501276bf4e77fa769f7f0890574e722a7f498818 /fr-fr
parentc149c619da0f258c55bfb355e9d9e3b02dc880c2 (diff)
French translation typo in comments for slice syntax with omitted indexes
Translation typo in comments for slice syntax with omitted indexes: "Omit the beginning" meant omit the beginning *of the list* (not the beginning of the range) "Omit the end" meant omit the end *of the list* (not the end of the range)
Diffstat (limited to 'fr-fr')
-rw-r--r--fr-fr/python-fr.html.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/fr-fr/python-fr.html.markdown b/fr-fr/python-fr.html.markdown
index 2bf0afd0..9dbdafe1 100644
--- a/fr-fr/python-fr.html.markdown
+++ b/fr-fr/python-fr.html.markdown
@@ -156,9 +156,9 @@ li[4] # Lève un 'IndexError'
# On peut accèder à des rangs de valeurs avec la syntaxe "slice"
# (C'est un rang de type 'fermé/ouvert' pour les plus matheux)
li[1:3] #=> [2, 4]
-# Sans spécifier de début de rang
+# Sans spécifier de fin de rang, on "saute" le début de la liste
li[2:] #=> [4, 3]
-# Sans spécifier de fin de rang
+# Sans spécifier de début de rang, on "saute" la fin de la liste
li[:3] #=> [1, 2, 4]
# Retirer un élément spécifique dee la liste avec "del"