+ - * / % // **
> >= < <= == != #返回一个布尔值
= += -= *= /= //= %= **=
and左右两个条件都为True,则为True,否则为False
or左右两个条件只要有一个满足则为True,否则为False
not 如果条件为True,则非False。如果条件为False,则非True。
用于比较两个对象的存储单元
is和is not
x=257
y=x
z=257
print(x is y)#is比较的是内存地址
print(x is not y)#is not判断是否不相等
把数字看作二进制进行计算的
& | ^ - << >>
判断元素是否在容器类元素里面(字符串)
in 和not in
class_student_lt = [‘s1‘,‘s2‘,‘s3‘]
print(‘s1‘ in class_student_lt) # True
print(‘s1‘ not in class_student_lt) # False
print(‘s4‘ in class_student_lt) # False
需要优先,就加括号,括号优先级最高
原文:https://www.cnblogs.com/zqfzqf/p/12577832.html