# # 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]. list2 = [info[-1]] + num[-3:1:-1] print(list2) # Expression for the list [4, 1, 1, 6, 5, 0]. list3 = info + num[1::2] print(list3)