Computer Science, asked by sarikakohli, 8 months ago

6.Write code in Python to add elements of list M1 and M2 in a list M3 and sort the elements of this new list m3

Answers

Answered by harika555
0

Answer:

Explanation:

m3=[]

for i in m1:

      m3.append(i)

for i in m2:

       m3.append(i)

l=sorted(m3)

print(l)

Similar questions