demo_ref_keyword_is.py:
x = ["apple", "banana", "cherry"] y = x print(x is y)
➜ begtut>python demo_keyword_is.py
True