adplus-dvertising
frame-decoration

Question

What will be the output when executed in python shell?
>>> a=[14,52,7]
>>>> b=a.copy()
>>> b is a

a.

True

b.

False

c.

May be

d.

Can't say

Posted under Python

Answer: (b).False

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What will be the output when executed in python shell?