Listen Flashcards

1
Q

Wie erstellt man eine Liste?

A

Listenname = [Element1, Element2, Element3]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Wie wählt man ein Element einer Liste aus?

A

Listenname[Position]
print(students[1])
Vorsicht: Index beginnt bei 0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Wie hängt man ein weiteres Element an eine Liste?

A

Listenname.append(Element)
students.append(“Moritz”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Wie frägt man die Länge einer Liste ab?

A

print(len(students))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Wie entfernt man das letzte Element einer Liste?

A

planets = [“Erde”, “Mars”, “Jupiter”, “Saturn”, “Pluto”]
planets.pop()
p = planets.pop()
print(p) = Pluto

How well did you know this?
1
Not at all
2
3
4
5
Perfectly