04_list列表的循环.py 646 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
"""
演示使用while和for循环遍历列表
"""


def list_while_func():
    """
    使用while循环遍历列表的演示函数
    :return: None
    """
    mylist = ["传智教育", "黑马程序员", "Python"]
    # 循环控制变量:通过下标索引来控制,默认0
    # 每一次循环将下标苏姚
14 15 16 17
    index = 0
    while index < len(mylist):
        print(mylist[index])
        index += 1
18 19


20
# list_while_func()
21 22 23 24 25
def list_for_func():
    """
    使用for循环遍历列表的演示函数
    :return:
    """
26 27 28 29
    mylist = ["传智教育", "黑马程序员", "Python"]
    for e in mylist:
        print(e)

30

31
list_for_func()