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