Quiz Catalog

Catalog of quizzes

a = sorted([1, 4, 6, 10])
b = [1, 4, 6, 10].sort()

print(a == b)
False
  • list/operation/compare