List Methods

 0    12 cartonașe    sir
descarcă mp3 printează joacă Testează-te
 
Întrebare Răspuns
Adds an item to the end of the list.
începe să înveți
. append()
Adds an item at the specified index.
începe să înveți
. insert()
Removes the specified item.
începe să înveți
. remove()
Removes the specified index, (or the last item if index is not specified).
începe să înveți
. pop(i'index)
Keyword which, removes the specified index, whole list, variable or function.
începe să înveți
del
Method which empties the list.
începe să înveți
. clear()
You can make a copy of a list with the this method.
începe să înveți
list2 = list1. copy()
Usethis method to add list2 at the end of list1.
începe să înveți
list1. extend(list2)
Returns the index of the first element with the specified value
începe să înveți
. index(value)
Reverses the order of the list.
începe să înveți
. reverse()
Sorts the list.
începe să înveți
list. sort(reverse=True|False, key=myFunc)
Returns the number of times a specified value occurs in a list.
începe să înveți
. count()

Trebuie să te autentifici pentru a posta un comentariu.