Source Code:
(back to article)
a = [1, 2, 3] b = [1, 2, 3] c = a is b print(c) # Output: False
Result:
Report an issue