# # Name: # # lab2task2.py # num = [8, 6, 7, 5, 3, 0, 9] info = [4, 1, 1] # Expression for the list [8, 7, 3, 9]. list1 = num[::2] print(list1) # Expression for the list [1, 3, 5, 7]. # Expression for the list [4, 1, 1, 6, 5, 0].