Result Size:
625 x 571
demo_ref_keyword_is2.py:
x = ["apple", "banana", "cherry"] y = ["apple", "banana", "cherry"] print(x is y)
x
x
=
[
"apple"
,
"banana"
,
"cherry"
]
y
=
[
"apple"
,
"banana"
,
"cherry"
]
print
(
x
is
y
)
C:\Users\My Name>python demo_keyword_is2.py
False