1.not,and,or条件运算
not:就是把紧跟其后的那个条件结果取反
在纯and语句中,(从左到右)碰到假,返回假;如果左右都为真,返回最后一个真 (串)
在纯or语句中,(从左到右)碰到真,就返回真;如果左右都为假,返回最后一个假 (并)
优先级:not>and>or
v1 = 5 or 3 # 5
v2 = 1 and 3 # 3
v3 = 0 and 2 and 1 # 0
v4 = 0 and 2 or 1 # 1
v5 = 0 and 2 or 1 or 4 # 1
v6 = 0 or False and 1 # False
2.成员运算符 in
判断一个字符串是否在一个大字符串中
print("zcy" in "hello zcy") # True
判断一个字符是否在一个大字符串中
print("z" in "hello zcy") # True
判断元素是否存在于列表中
print(111 in [111, 222, 33]) # True
判断key是否存在于字典中(只能判断key,不能判断value)
print(111 in {"k1": 111, "k2": 222}) # False
print("k1" in {"k1": 111, "k2": 222}) # True
not in使用
print("zcy" not in "hello zcy") # False
3.身份运算符is
判断id是否相等