Computer Science, asked by SSSK420, 2 months ago

L1=[1,2,4]

L2=["Hello","User",56]

L3=L1

L3.append("Well")

print(L3)

L1.extend(L2)

print(L1)

Answers

Answered by sambhavgautam6
1

OUTPUT:-

[1,2,4,"Well","Hello","User",56]

Similar questions