0
List slicing
Please explain me slicing list. x=['a','b','c','d','e','f','g','h'] x[6:2:-1] how the start and stop are considered? I mean in which direction start and stop are done?
1 Odpowiedź
0
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2453/
Fist parameter is start, second is stop.