python的in,is和id函數 1. in 和 not in —— 判斷某個序列中是否存在某值 2. is 和 is not —— 判斷兩個標識符是不是指向同一個地址(同一個對象),類似於判斷 id(x) == id ...