基本运算符算术运算符

print(10+2) # 加减乘除运算符print(10 / 3) print(10 // 3) # 只保留整数部分print(10 % 3)  # 取余数print(10 ** 3) # 幂方运算

比较运算符

、>=、<=、==、!=

赋值运算符

# =:变量赋值# +=、-=、*=、**=、/=:增量赋值# 例:age += 1 表示age=age+1

链式赋值

x=y=z=10

交叉赋值

m=10n=20# 把m和n的值相互交换m,n = n,m

解压赋值

list = [11,22,33]a,b,c = list # 把列表或者字典里的每一个值分别对应上左侧的变量a,b,*_=list # 只取列表前两个对应,*会将剩下的值存成列表赋值给,*_用来取列表两边的值

逻辑运算符

not、and、or
优先级:not>and>or

# 1.not:就是把紧跟其后的那个条件结果取反,not与紧跟其后的那个条件是一个不可分割的整体print(not 16>13)# 2.and:逻辑与,两真才为真print(条件1 and 条件2)# 3.or:逻辑或,一真则为真print(条件1 or 条件2)# 4.优先级print(3>4 and not 4>3 or 1==3 and 'x'=='x')# 先算not 4>3,然后and两边算,最后or运算

成员运算符

in、not in

print('hello'in'hello world') # 子的在不在父的里面,返回true or false

身份运算符

is,判读id是否相等