Computer Science
Given a list L= [10, 20, 30, 40, 50, 60, 70], what would L[1 : 4] return?
- [10, 20, 30, 40]
- [20, 30, 40, 50]
- [20, 30, 40]
- [30, 40, 50]
Python List Manipulation
30 Likes
Answer
[20, 30, 40]
Answered By
9 Likes
30 Likes
[20, 30, 40]
Answered By
9 Likes