# it appends a list into a list list1 = [1,2,3,4,5] list1.append([6,7]) # ouput = [1, 2, 3, 4, 5, [6, 7]]