List Methods

 0    12 fiche    sir
Télécharger mP3 Imprimer jouer consultez
 
question réponse
Adds an item to the end of the list.
commencer à apprendre
. append()
Adds an item at the specified index.
commencer à apprendre
. insert()
Removes the specified item.
commencer à apprendre
. remove()
Removes the specified index, (or the last item if index is not specified).
commencer à apprendre
. pop(i'index)
Keyword which, removes the specified index, whole list, variable or function.
commencer à apprendre
del
Method which empties the list.
commencer à apprendre
. clear()
You can make a copy of a list with the this method.
commencer à apprendre
list2 = list1. copy()
Usethis method to add list2 at the end of list1.
commencer à apprendre
list1. extend(list2)
Returns the index of the first element with the specified value
commencer à apprendre
. index(value)
Reverses the order of the list.
commencer à apprendre
. reverse()
Sorts the list.
commencer à apprendre
list. sort(reverse=True|False, key=myFunc)
Returns the number of times a specified value occurs in a list.
commencer à apprendre
. count()

Vous devez vous connecter pour poster un commentaire.