美文网首页
Python运算符

Python运算符

作者: 那就这样吧丶xx | 来源:发表于2020-06-24 14:29 被阅读0次

    算术运算符

    +  -  *  /  %  **  //  
    判断某个东西是否在某个东西里面包含
    in   not in 
    

    逻辑运算符

    and   or   not
    

    比较运算符

    ==   >   <   >=   <=  !=  
    

    布尔值

    True  False
    

    乘方 **

    num = 9 ** 2
    print(num)       #  81
    

    求数 /

    num = 9 / 2
    print(num)       #  4.5
    

    求商 //

    num = 9 // 2
    print(num)       #  4
    

    in

    name = "Hello"
    if "H" in name:
        print("ok")
    else:
        print("not ok")    #  ok
    

    相关文章

      网友评论

          本文标题:Python运算符

          本文链接:https://www.haomeiwen.com/subject/rvrrfktx.html