Mega Code Archive
Categories
/
Python Tutorial
/
Operator
Is
x = y = [1, 2, 3] z = [1, 2, 3] print x == y print x == z print x is y print x is z