1/5
Flashcards covering key vocabulary terms related to strings and lists in Python programming.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
String
A sequence of characters enclosed in quotes, like 'hello'.
Character
A single letter, digit, or symbol in a string.
String operations
Actions you can perform on strings, such as concatenation (+), slicing, and repetition (*).
Index
The position of an item in a string or list, starting from 0.
List
An ordered collection of items in Python, written with square brackets [].
Traversal
Accessing each element in a string or list one at a time, often using a loop.