美文网首页
Python 语句

Python 语句

作者: 康乐芳华 | 来源:发表于2017-11-22 15:12 被阅读0次

    逻辑

    与 是 and, 或 是 or 非 是 not 非常英语化
    不在什么里面 not in

    布尔

    布尔表达式的结果是 True 还有 False

    相等

    没有 ===

    if

    if conditional:
        dosomething
    

    if...else

    if conditional:
        dosomething
    else:
        doanother
    

    if...elseif...if

    相关文章

      网友评论

          本文标题:Python 语句

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