Drop l’élément d’une liste à gauche

Retourne une liste avec n elements supprimés sur la gauche.

  • Utilise la “notation slice” pour supprimer le nombre spécifié d’éléments à gauche.
  • Zap du dernier argument, n, utilisation valeur par défaut 1.
python
1
2
def dropaGauche(a, n = 1):
  return a[n:]
python
1
2
3
dropaGauche([1, 2, 3]) # [2, 3]
dropaGauche([1, 2, 3], 2) # [3]
dropaGauche([1, 2, 3], 42) # []