# li.append(li2);# push li2 at the end, not elements of the list li.extend(li2);# push elements of the li2 at the end # li.extend(92);# throws error becz it takes ...