1234567891011121314151617181920# 成员运算符# in, not inages = [1, 2, 3, 4]print(1 in ages) # Trueprint(33 not in ages) # True# print(not 33 in ages) # True# 身份运算符# 判断内存地址# is, is nota = 10b = aprint(id(a)) # 1501996416print(id(b)) # 1501996416print(a is b) # Trueprint(a is not b) # False