1. [1, 44]
2. [1, 2, 3, 44]
3. [44, 2, 3]
4. [1, 2, 3]
[44, 2, 3]
1. [1] [2] [3]
2. [1] [1, 2] [1, 2, 3]
3. [1, 2, 3]
4. 1 2 3
[1, 2, 3]
1. None
2. 1
3. 2
4. Error
2
1. None
2. a
3. b
4. c
c
1. 4
2. 5
3. 8
4. 12
5
1. Lists
2. Dictionary
3. Set
4. All of the mentioned
All of the mentioned
1. 2
2. 4
3. 5
4. 8
8
1. 1
2. 4
3. 5
4. 8
5
1. None[3, 4, 5]
2. None[1, 2, 3]
3. [3, 4, 5][1, 2, 3]
4. [3, 4, 5]None
None
[3, 4, 5]
1. Return a list containing every third item from L starting at index 0
2. Return an empty list
3. Return a list containing every third index from L starting at index 0
4. Return a list containing the items from L starting from index 0, omitting every third item
Return a list containing every third item from L starting at index 0