I have two lists:
l1 = list(2, 3) l2 = list(4)
I want a third list:
list(2, 3, 4).
How can I do it in sim
We can use append
append
append(l1, l2)
It also has arguments to insert element at a particular location.