How to append only the x first elements of a list, to another list. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How to append only the x first elements of a list, to another list.

Append the x first elements

26th Apr 2018, 9:08 PM
Hakim
Hakim - avatar
1 Answer
+ 7
list1= [1,2,3,4,5] list2=[5,4] list2+=list1[:4] print(list2) output: 5,4,1,2,3,4
26th Apr 2018, 9:27 PM
Tomer Sim
Tomer Sim - avatar