美文网首页python入门基础
黑猴子的家:Python for循环-continue

黑猴子的家:Python for循环-continue

作者: 黑猴子的家 | 来源:发表于2019-01-10 15:49 被阅读60次

    code

    # Author:黑猴子
    
    #continue
    for i in range(0,10):
        if i <3:
            print("loop ",i)
        else :
            continue
        print("hehe...")
    

    运行

    loop  0
    hehe...
    loop  1
    hehe...
    loop  2
    hehe...
    

    相关文章

      网友评论

        本文标题:黑猴子的家:Python for循环-continue

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