Strings Flashcards

1
Q

What is the syntax for creating a multi-line string?

A

Use triple quotes: '''Line 1 Line 2'''.

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

How to convert a string to uppercase?

A

s.upper() (e.g., 'hello'.upper() → 'HELLO').

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

How to remove whitespace from the start/end of a string?

A

s.strip() (e.g., ' text '.strip() → 'text').

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

How to split a string into a list using a delimiter?

A

s.split(delimiter) (e.g., 'a,b,c'.split(',') → ['a','b','c']).

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

What method joins a list of strings into one string?

A

delimiter.join(list) (e.g., ','.join(['a','b']) → 'a,b').

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

How to replace a substring in a string?

A

s.replace(old, new) (e.g., 'hello'.replace('e','a') → 'hallo').

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

How to check if a string starts with a specific substring?

A

s.startswith(substring) (returns True or False).

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

How to check if a string ends with a specific substring?

A

s.endswith(substring).

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

What does s.find(substring) do?

A

Returns the first index of substring or -1 if not found.

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

What is the difference between s.find() and s.index()?

A

s.index() raises an error if substring is missing; s.find() returns -1.

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

How to count occurrences of a substring?

A

s.count(substring) (e.g., 'hello'.count('l') → 2).

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

How to format a string with variables?

A

Use f-strings: f'{variable}' (e.g., f'Name: {name}').

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

What does s.isdigit() check?

A

Returns True if all characters are digits.

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

What does s.isalpha() check?

A

Returns True if all characters are alphabetic.

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

How to split a string at line breaks?

A

s.splitlines() (e.g., splits 'Line1\nLine2' into ['Line1','Line2']).

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

How to check if a string is lowercase?

A

s.islower() (returns True if all characters are lowercase).

17
Q

What does s.partition(separator) return?

A

A tuple: (part_before, separator, part_after).

18
Q

How to capitalize the first character of a string?

A

s.capitalize() (e.g., 'python'.capitalize() → 'Python').

19
Q

How to reverse a string?

A

Slice with [::-1]: s[::-1] (e.g., 'hello' → 'olleh').

20
Q

What does s.title() do?

A

Converts the first letter of each word to uppercase (e.g., 'hello world' → 'Hello World').