美文网首页
2019-06-19l廖雪峰python循环语句笔记

2019-06-19l廖雪峰python循环语句笔记

作者: pzy_24fa | 来源:发表于2019-06-19 21:04 被阅读0次

    一、循环语句两个类型

    1. for x in ...

    答案L = ['Bart', 'Lisa', 'Adam']

    for L in L:

    print("hello,",L,"!")

    2. While语句

    L = ['Bart', 'Lisa', 'Adam']

    n = 0

    while n <3:

        print("hello,",L[n],"!")

        n = n + 1

    相关文章

      网友评论

          本文标题:2019-06-19l廖雪峰python循环语句笔记

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