运算符

运算符

  • 算数运算符 +,-

  • 比较运算符 >,<,==

  • 赋值运算符=,+=

  • 逻辑运算符not,and,or(优先级:not > and > or,同一优先级从左至右依次计算)

    # and or not
    
    # 1 在没有()的情况下,优先级:not > and > or,同一优先级从左至右依次计算
    # 情况1:两边都是比较运算
    # print(2 > 1 and 3 < 4 or 4 > 5 and 2 < 1)
    # print(True or False)
    
    # 情况2:两边都是整数
    '''
    x or y , x为真,值就是x,x为假,值是y
    x and y , x为真,值就是y,x为假,值是x
    '''
    print(1 or 2)
    print(3 or 2)
    print(4 or 2)
    print(-1 or 2)
    print(0 or 2)
    print(1 and 2)
    print(0 and 2)
    print(2 and 0)
    
    得:
    1
    3
    4
    -1
    2
    2
    0
    0
    
posted @ 2021-06-03 12:34  刘家小仙女  阅读(36)  评论(0编辑  收藏  举报