Computer Science, asked by unicorn9708, 3 months ago

Predict the output:

l1=[500, 600]

l2=[35, 45]

l1.append(700)

l1.extend(l2)

l1.insert(25, 2)

print(l1)

print(l1+l2)

print(l1.idex(35))

print(l2*2)​

Answers

Answered by Bhavya827
0

Maybe, One Might Be The Answer.....

Similar questions