List Methods

 0    12 Datenblatt    sir
mp3 downloaden Drucken spielen überprüfen
 
Frage Antworten
Adds an item to the end of the list.
Lernen beginnen
. append()
Adds an item at the specified index.
Lernen beginnen
. insert()
Removes the specified item.
Lernen beginnen
. remove()
Removes the specified index, (or the last item if index is not specified).
Lernen beginnen
. pop(i'index)
Keyword which, removes the specified index, whole list, variable or function.
Lernen beginnen
del
Method which empties the list.
Lernen beginnen
. clear()
You can make a copy of a list with the this method.
Lernen beginnen
list2 = list1. copy()
Usethis method to add list2 at the end of list1.
Lernen beginnen
list1. extend(list2)
Returns the index of the first element with the specified value
Lernen beginnen
. index(value)
Reverses the order of the list.
Lernen beginnen
. reverse()
Sorts the list.
Lernen beginnen
list. sort(reverse=True|False, key=myFunc)
Returns the number of times a specified value occurs in a list.
Lernen beginnen
. count()

Sie müssen eingeloggt sein, um einen Kommentar zu schreiben.