Str () Python Funktion Flashcards

1
Q

Bestimmte die Anzahl der Elemente im String s

A

Len(s)

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

Liefere Substring von String s von Index i bis j-1

A

s[i:j]

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

Spalte String s am separator sep in eine Liste von Strings

A

S.split(sep)

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

Lösche Lerrzeichen am Ende vom String

A

S.rstrip()

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

Lösche Leerzeichen am Anfang vom String

A

S.lstrip()

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

Lösche Lerrzeichen am Anfang und Ende vom String

A

s.Strip()

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

Substituiere den String s für den Platzhalter {}

A

{}.format(s)

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

Erzeuge Übersetzungstabelle, die die Elemente von x auf Elemente von y abbildet

A

Str.maketrans (x,y)

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

Wende Übersetzungstabelle t auf den String s an

A

S.translate (t)

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