[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] >>> "abc" in x True >>> 123 in x True >>> 12 in x False >>> 12 not in x True >>> quit()