Source Code:
(back to article)
my_list = [1, 2, 3, 4, 5] my_list = my_list[1:] print(my_list) # Output: [2, 3, 4, 5]
Result:
Report an issue