Python 遍历列表 for循环
Python学习之路,点击有全套Python笔记 Python for循环可以遍历任何序列的项目,如一个列表或者一个字符串。 语法: for 临时变量 in 序列: 重复执行的代码1 重复执行的代码2 基础版 name_list = ['jack', 'tom', 'tony', 'rose'] for i in name_list: print(i) # jack # tom # tony # rose 进阶版 # 先来了解zip # 在Python2中,是这样的 a = [1,2,3] b = [4,5,6] c = [4,5,6
暂无评论