*禁白嫖* python---运算符运算语句
2021-01-18 本文已影响0人
幼姿沫
算术运算符
a=10
b=3
print(10/3,10//3)
赋值运算符
c,d,e=5,6,7
print(c,d,e)
复合赋值运算符
c+=e
print(c)
c*=e
print(c)
c-=a
print(c)
c/=a
print(c)
b**=d
print(b)
a//=c
print(a)
算术运算
比较运算
赋值运算
在没有()的情况下not 优先级高于 and,and优先级高于or,即优先级关系为( )>not>and>or,同一优先级从左往右计算。
逻辑运算符
x or y , x为真,值就是x,x为假,值是y; x and y, x为真,值是y,x为假,值是x。