[dywang@kvm8 10827000]$ python3 Python 3.6.8 (default, Mar 19 2021, 05:13:41) [GCC 8.4.1 20200928 (Red Hat 8.4.1-1)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> x=["abc",123] >>> y=["abc",123] >>> x is y False >>> x == y True >>> z=x >>> x is z True >>> quit()