02 python初学 (数字运算 逻辑运算)

运算: 5/2 -> 2.5

       5//2 -> 2  取整

       5%2 -> 1  取余

       2**10 -> 1024 指数运算

逻辑运算符:

  1. and : 条件1 and 条件2
  2. not 
  3. or :条件1 or条件2
  4. 优先级:not > and >or
  5. True   False

posted on 2018-12-16 14:55  mlllily  阅读(375)  评论(0编辑  收藏  举报