Methoden der Klasse list Flashcards

1
Q

Erzeuge eine neue leere Liste

A

[] oder List()

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

Bestimme die Länge der Liste l

A

Len(l)

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

Füge Liste sList von Strings mit Separator sep zu einem String zusammen

A

Sep.join(slist)

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

Füge Element e an das Ende der Liste l

A

L.append(e)

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

Lösche Element am Ende der Liste l und liefere es als Return wert

A

L.pop()

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

Extrahiere den Teil der der Liste l von Index i bis Index j-1l

A

L[i:j]

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

Zähle die Indizes und Elemente der Liste l auf

A

list (enumerate(l))

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

Füge e am Anfang der Liste l ein

A

L.insert (0,e)

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

Lösche Element am Anfang der Liste l und liefere es als Return wert

A

L.pop(0)

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

Füge Element e nach Position i in Liste l ein

A

L.insert(i,e)

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