List Methods

 0    12 schede    sir
Scarica mp3 Stampa Gioca Testa il tuo livello
 
Domanda Risposta
Adds an item to the end of the list.
inizia ad imparare
. append()
Adds an item at the specified index.
inizia ad imparare
. insert()
Removes the specified item.
inizia ad imparare
. remove()
Removes the specified index, (or the last item if index is not specified).
inizia ad imparare
. pop(i'index)
Keyword which, removes the specified index, whole list, variable or function.
inizia ad imparare
del
Method which empties the list.
inizia ad imparare
. clear()
You can make a copy of a list with the this method.
inizia ad imparare
list2 = list1. copy()
Usethis method to add list2 at the end of list1.
inizia ad imparare
list1. extend(list2)
Returns the index of the first element with the specified value
inizia ad imparare
. index(value)
Reverses the order of the list.
inizia ad imparare
. reverse()
Sorts the list.
inizia ad imparare
list. sort(reverse=True|False, key=myFunc)
Returns the number of times a specified value occurs in a list.
inizia ad imparare
. count()

Devi essere accedere per pubblicare un commento.