Quiz Catalog

Catalog of quizzes

lst1 = [2, 5, 8, 0, 4, 1]
lst2 = lst1.copy()

print(lst1 is lst2, lst1 == lst2)
False True
  • list/operation/copy
  • expression/operation/is
  • expression/operation/equality