1:优先级顺序 算数运算>比较运算>逻辑运算python
2::1 and 2 <<2 python里bollean表达式的返回的是决定表达式值的那个参数的值 3 or 0 <<3web
3:round(2.6) <<3.0 round(2.4)<<2.0 四舍五入spa
4 range(0,3)<<0,1,2 range(3,0,-1) <<3,2,1orm