Chapter 8 More About Strings

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/9

flashcard set

Earn XP

Description and Tags

Flashcards covering key concepts related to strings, including methods and properties.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

10 Terms

1
New cards

What is the first index in a string?

0

2
New cards

What is the last index in a string?

The size of the string minus one.

3
New cards

What happens if an index that is out of range for a string is accessed?

An IndexError exception will occur.

4
New cards

What function returns the length of a string?

len.

5
New cards

Which string method returns a copy of the string with all leading whitespace characters removed?

lstrip.

6
New cards

What string method returns the lowest index of a specified substring in the string?

find.

7
New cards

What operator determines if one string is contained within another?

in.

8
New cards

Which string method returns true if a string has only alphabetic characters?

isalpha.

9
New cards

Which string method returns true if a string has only numeric digits?

isdigit.

10
New cards

What string method returns a copy of the string with all leading and trailing whitespace removed?

strip.