逻辑运算符
and : 与,表示并且
or : 或, 表示或者
not : 非,表示不是
成员运算符
in
not in
身份运算符
is
is not
短路原则
优先级
not高于and高于or
成分运算符
in和not in
身份运算符
is 和 is not 与 == 和 !=的意思很像
但前者是判断两个箱子里的东西是否一样,后者指是否指向同一个箱子
运算符优先级
not 高于 and 高于 or
print(1>2 or 4>3 and not 6<5)
1运行: not 6<5
2运行:4>3 and
3运行:1>2 or
and 与表并且
or 或表或者
not 高于and高于or
id()函数返回对象的唯一标识符,标识符是一个整数