python基本运算符
基本运算符
算术运算符
+ - * / % // **
比较运算符
> >= < <= == != #返回一个布尔值
赋值运算符
= += -= *= /= //= %= **=
逻辑运算符
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
python运算符优先级
需要优先,就加括号,括号优先级最高