python中,有变量.值和运算符参与的语句叫做表达式. 比如: #字符串表达式 "hello" #运算表达式 + #赋值表达式 test = "hello" #变量表达式 test 运算符优先级 运算符 描述 lambda Lambda表达式 or 布尔“或” and 布尔“与” not x 布尔“非” in,not in 成员测试 is,is not 同一性测试 <,<=,>,>=,!=,== 比较 | 按位或 ^ 按位异或 &…
在Python中有丰富的算术运算,这使得Python在科学计算领域有着很高的地位,Python可以提供包括四则运算在内的各种算术运算. a = 10 b = 20 print(a-b) #-10 print(a/b) #0.5 print(a%b) #10,返回余数 print(a**b) #10^20 print(a//b) #0,取整,返回商的整数部分 print(a and b) #与操作,返回值为20 print(a or b) #或操作,返回值为10 print(not(a and b…