All problems
EasyLists
List slicing
Given [10,20,30,40,50,60,70], print indices 2..5 (exclusive) as a sub-list.
- #slicing
Sample input
[10,20,30,40,50,60,70]
Sample output
[30, 40, 50]
list-slice.py
Output
Press "Run code" to execute.
Loading…
Given [10,20,30,40,50,60,70], print indices 2..5 (exclusive) as a sub-list.
[10,20,30,40,50,60,70]
[30, 40, 50]
Press "Run code" to execute.