Strings Flashcards
1
Q
How do you turn a string in to a list?
A
“abcdef”.split()
2
Q
How do you lowercase a string?
A
string.lower(‘ABC’)
Coding Interviews > Strings > Flashcards
How do you turn a string in to a list?
“abcdef”.split()
How do you lowercase a string?
string.lower(‘ABC’)