Post

@PythonPr Answer: A. True
They are both of a set data type. And sets don't allow duplicate values. Therefore, the repetition of 3 in set y will be ignored while testing for the condition.
So that makes x==y to be true. Because they contain the same in numbers of unique values.
English

@PythonPr True because sets don't store duplicate values
So, x and y both essentially store {1, 2, 3}
English
















