基本运算符:
+ 加
- 减
* 乘
/ 除
% 取余
** 幂次方
// 整除
比较运算
== 等于
!= 不等于
逻辑运算
优先级:() > not > and > or
and 两边都为真整体为真
or 有一个真就为真
not 取反
x or y 如果x为非0返回x,如果x为0返回y
and和or相反
int ------> bool 非0的值转换为bool值为True,0转换为bool为False
bool ------->int bool值True转换为int就为1,False转换为int就为0