Computer Science, asked by gourikirsani6, 3 months ago

Using extend() method add a list t1 and the end of list t2.​

Answers

Answered by Kaushikkalesh
0

t1 = [1,2,3]

t2 = [4,5]

t1.extend(t2)

#print(t1)

Hope it Helped

Similar questions