Python for循环 for 适合逐个处理一个序列里的元素。 for fruit in fruits: print(fruit) 常见搭配: Python range函数 Python enumerate函数 Python zip函数 Python列表 相关:Python循环语句、Python代码块与缩进