Hello,
I am just wondering as to what slicing in python is becasue in the lesson Delete Starting Even Numbers, got stuck and it gave me a while loop:
while (len(lst) > 0 and lst[0] % 2 == 0):
lst = lst[1:]
return lst
I don’t understand the lst = lst[1:], please help