Lists

 l1 = [3,43,434,2]

l1.extend([12,21,45,321])
print(l1)
l1.sort()
print(l1)

Comments

Popular posts from this blog