0
Can someone please explain string slices????
Python class 11
3 Answers
+ 6
Lst = [1,2,3]
List length is 3, consisting of list index's 0,1,2
Lst[0] => 1
Lst[1] => 2
Lst[2] => 3
The list slice accesses the index of Lst and returns the item emplaced at that index
0
All about Python string slice....
http://net-informations.com/python/pro/slice.htm