美文网首页
python判断循环(2)

python判断循环(2)

作者: 纳米君 | 来源:发表于2018-04-08 23:54 被阅读11次

    一. 条件判断

    if <条件判断1>:
        <执行1>
    elif <条件判断2>:
        <执行2>
    elif <条件判断3>:
        <执行3>
    else:
        <执行4>
    

    注意别少了冒号‘:’,示例如图:

    image.png

    if x,跟js中的if判断相似,只需要x非零、非空字符串、非空list等,即为True。

    二. 循环

    for和while循环,支持break、continue关键字。直接看图:

    image.png

    相关文章

      网友评论

          本文标题:python判断循环(2)

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