- Sequence Operations 0:57
- Slices 4:29
- Creating Slices 1 objective
- Len, Min, and Max 3:04
- Finding len, min, max 3 objectives
- Membership Testing 2:16
- Count and Index 4:38
- Code Samples: Membership Testing, Count, and Index
- Concatenation and Multiplication 3:04
- Sequence Operations Cheat Sheet
- Recap of Sequence Operations 4 questions
Quiz Question 1 of 4
Given the following code, what does the 2 represent?
my_string = 'python'
string_slice = my_string[::2]
Choose the correct answer below: