I am confused on why the first code snippet in the code below evaluates to false, and the second to true:
print(frozenset((1, 2, 3)) is frozenset((1, 2, 3)))
print((1, 2, 3) is (1, 2, 3))
I am confused on why the first code snippet in the code below evaluates to false, and the second to true:
print(frozenset((1, 2, 3)) is frozenset((1, 2, 3)))
print((1, 2, 3) is (1, 2, 3))