>>> list1 = [11, 2, 23]
>>> list2 = [2, 11, 23]
>>> print(list1 == list2)
>>> list2 = [2, 11, 23]
>>> print(list1 == list2)
Anonymous Quiz
56%
False
13%
Error
27%
True
3%
None of the above
>>> list1 = [11, 2, 23]
>>> list2 = [2, 11, 23]
>>> print(list1 == list2)
>>> list2 = [2, 11, 23]
>>> print(list1 == list2)
Anonymous Quiz
14%
Error
31%
True
52%
False
3%
None of the above