Is Python set ordered or not? [Answered: Not] Today I encounter a challenge with following question: What is the output? a = {3, 2, 1} b = [1, 2, 3] print(list(a) == b) Choices: True or False Answer: True BUT, isn't set is unordered? It is what w3cschools says: Unord...