Computer Science, asked by arunyes2004, 5 months ago

what is the output when following code is executed
list1=[11,13]
list2=list1
list1[0]=14
print(list2)​

Answers

Answered by Dishan13082007
0

Answer:

list2=list1

Explanation:

hope it helps please please follow me

Answered by anonymous123467122
0

Answer:

[14,13] will be the output

Similar questions