adplus-dvertising
frame-decoration

Question

What is the output of the following piece of code?
>>> a={5,6,7,8}
>>> b={7,5,6,8}
>>> a==b

a.

True

b.

False

c.

May be

d.

Can't say

Posted under Python

Answer: {3,4,6,7}

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of the following piece of code?