Heim  >  Artikel  >  Backend-Entwicklung  >  Beherrschen von Python-Listen: Grundlegende Techniken, die Sie kennen müssen

Beherrschen von Python-Listen: Grundlegende Techniken, die Sie kennen müssen

Patricia Arquette
Patricia ArquetteOriginal
2024-11-12 22:28:02190Durchsuche

Mastering Python Lists: Essential Techniques You Need to Know

Für

einfach für

Dadurch wird die Liste durchlaufen und jedes Element der Liste ist in jeder Iteration als Variable verfügbar. Dies wird häufig verwendet, wenn alle Elemente der Liste durchgegangen werden müssen.

operating_systems = ["windows", "mac", "linux"]
for os in operating_systems:
    print(os)`

# Output
windows
mac
linux

für und Reichweite

Wenn ein Zugriff basierend auf dem Index und dem Indexwert erforderlich ist.

operating_systems = ["windows", "mac", "linux"]
for i in range(len(operating_systems)):
    print(f"Index {i}: {operating_systems[i]}")
# Output
Index 0: windows
Index 1: mac
Index 2: linux

für und aufzählen

Dies ist eine elegante Möglichkeit, wenn Sie sowohl den Index als auch den Wert benötigen

operating_systems = ["windows", "mac", "linux"]
for index, os in enumerate(operating_systems):
    print(f"Index is {index} and value is {os}")
# Output
Index is 0 and value is windows
Index is 1 and value is mac
Index is 2 and value is linux

Während

einfach während

operating_systems = ["windows", "mac", "linux"]
i = 0 # Inital condition, required to start
while i < len(operating_systems):
    print(f"While looping {i} got the value {operating_systems[i]}")
    i = i + 1 # This is very important, dont forget about infinite loops
# Output
While looping 0 got the value windows
While looping 1 got the value mac
While looping 2 got the value linux

Iterator

Ermöglicht eine genaue Kontrolle darüber, wann der Iterator vorwärts bewegt werden soll, obwohl wir uns auf StopIteration verlassen müssen, um zu überprüfen, ob das Ende erreicht ist.

operating_systems = ["windows", "mac", "linux"]
iterator = iter(operating_systems)
while True:
    try:
        os = next(iterator)
        print(f"Consumed form iterator {os}")
    except StopIteration:
        print("Consumed all from iterator")
        break
# Output
Consumed form iterator windows
Consumed form iterator mac
Consumed form iterator linux
Consumed all from iterator
# Hack to avoid StopIteration
iterator = iter(operating_systems)
end_of_list = object()
reached_end = False
while not reached_end:
    os = next(iterator, end_of_list)# a predefined object as end of the list
    if os != end_of_list:
        print(os)
    else:
        reached_end = True

Listenverständnis

Wenn Transformation erforderlich ist

operating_systems = ["windows", "mac", "linux"]
os_uppercase = [os.upper() for os in operating_systems]
print(os_uppercase) 
# Output
['WINDOWS', 'MAC', 'LINUX']

Radfahren

Wenn das Durchblättern einer Liste erforderlich ist. Verwenden Sie die richtige Randbedingung, um die Schleife zu unterbrechen

import itertools
operating_systems = ["windows", "mac", "linux"]
for item in itertools.cycle(operating_systems):  
    print(item)
# Infinite cycling loopmake sure to have proper boundary condition to break
# Output
windows
mac
linux
windows
mac
linux
windows
mac
linux
windows
mac
linux
windows ....... Infinite loop

Über mehrere Listen

Mehrere Listen gleichzeitig durchlaufen. Beachten Sie die Ausgabe, wenn die Listengrößen unterschiedlich sind.

operating_systems = ["windows", "mac", "linux"]
mobile_operating_systems = ["android", "ios"]

for os, mobile_os in zip(operating_systems,mobile_operating_systems):
    print(os, mobile_os)
# Output
windows android
mac ios

Rückwärtsschleife

operating_systems = ["windows", "mac", "linux"]
for reversed_os in reversed(operating_systems):
    print(reversed_os)
# Output
linux
mac
windows

Das obige ist der detaillierte Inhalt vonBeherrschen von Python-Listen: Grundlegende Techniken, die Sie kennen müssen. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn