摘要: 一、算数运算 假设a=10,b=20 二、比较运算 三、赋值运算 四、逻辑运算 1、优先级关系 : ( )>not>and>or,同一优先级从左往右计算。 1 >>> 3>4 or 4<3 and 1==1 2 False 3 >>> 1 < 2 and 3 < 4 or 1>2 4 True 5 阅读全文
posted @ 2019-12-24 15:04 飞鸽子 阅读(176) 评论(0) 推荐(0) 编辑