+ 4
List slice: list[2:5] -> returns the second to fourth elements of the list list[:] -> returns the elements from start to end list[::-1] -> returns the elements from end to start, because it has a -1 stepping
10th Jul 2019, 7:34 AM
Airree
Airree - avatar