Heim > Artikel > Backend-Entwicklung > Python-Grundlagenliste
1. Listenerstellung
new_list1 = ['TV','Car','Cloth','Food']
new_list2 = list(['TV','Car','Cloth ','Essen'])
print (new_list1)
print (new_list2)
Laufende Ergebnisse:
['TV', 'Car', 'Cloth', 'Food']
['TV', 'Auto', 'Stoff', 'Essen']
2. Häufig verwendete Methoden auflisten:
1. anhängen
new_list1 = ['TV','Car','Cloth','Food']
print (new_list1)
new_list1.append('Water') #Append'water'
print (new_list1)
Laufende Ergebnisse:
['TV', 'Car', 'Cloth', 'Food']
['TV', 'Car', 'Cloth', 'Food', 'Water']
2.count
new_list1 = ['TV','Car','Cloth','Food','Food']
print (new_list1.count('Food' )) #Zähle, wie oft „Essen“ in der Liste enthalten ist => 2 Mal
3.extend
new_list1 = ['TV','Car','Cloth ', 'Food','Food']
new_list1.extend([11,22,33,'Car'])
print (new_list1)
Betriebsergebnisse:
['TV', 'Auto', 'Stoff', 'Lebensmittel', 'Lebensmittel', 11, 22, 33, 'Auto']
4.sort
new_list1 = ['TV' ,' Car','Cloth','Food','Food']
print (new_list1)
new_list1.sort() #Forward sort
print (new_list1)
new_list1.sort(reverse = True) #Reverse sort
print (new_list1)
Running result:
['TV', 'Car', 'Cloth', 'Food', 'Food']
['Car' , 'Cloth', 'Food', 'Food', 'TV'] #Ergebnisse der Sortierung vorwärts
['TV', 'Food', 'Food', 'Cloth', 'Car'] #Ergebnis der Sortierung rückwärts
5. len
new_list1 = ['TV','Car','Food','Cloth','Food']
print (len(new_list1 )) => 5 #Anzahl der Elemente drucken
6.remove
new_list1 = ['TV','Car','Food','Cloth',' Food' ]
new_list1.remove('Food')
print (new_list1)
Operating results:
['TV', 'Car', 'Cloth', 'Food'] #remove löscht das erste gefundene identische Element
7.pop
new_list1 = ['TV','Car','Food','Cloth','Food ']
new_list1.pop() #Ein Element nach dem Zufallsprinzip löschen
print (new_list1)
new_list1.pop(2) #Angeben, dass ein Element gelöscht werden soll
print (new_list1)
Das laufende Ergebnis ist:
['TV', 'Car', 'Food', 'Cloth']
['TV', 'Car', 'Cloth'] #, das dritte Element 'Food' wird hier gelöscht '
8.index
new_list1 = ['TV','Car','Food','Cloth','Food']
print (new_list1.index ('Food') ) #Gibt den Indexwert des angegebenen Elements zurück. Das gleiche Element gibt das erste gefundene
zurück. Das Ergebnis der Operation ist: 2
9.insert
new_list1 = [' TV','Car','Food','Cloth','Food']
new_list1.insert(2,'HAHAHA') #Element an der angegebenen Position einfügen
print (new_list1)
The Das laufende Ergebnis ist:
['TV', 'Car', 'HAHAHA', 'Food', 'Cloth', 'Food']