mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-11-22 21:52:31 +03:00
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)
This commit is contained in:
parent
c149c619da
commit
200298c769
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user