格式:
for 遍历不变的个体 in 需要遍历的目标(列表,字典)
例子:
shoes=[‘air joke’,’air max’,’adidas NMD’]
#用shoe(变量)遍历shoes
for shoe in shoes:
print(shoe)
输出结果:
air joke
air max
adidas NMD
笔记-2020 7 28
格式:
for 遍历不变的个体 in 需要遍历的目标(列表,字典)
例子:
shoes=[‘air joke’,’air max’,’adidas NMD’]
#用shoe(变量)遍历shoes
for shoe in shoes:
print(shoe)
输出结果:
air joke
air max
adidas NMD
笔记-2020 7 28