二十八 Python的for 循环
Posted 刘大飞
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了二十八 Python的for 循环相关的知识,希望对你有一定的参考价值。
1: for 循环可以循环如下类型:
my_string = "abcabc" // 字符串类型 for c in my_string: print(c, end=‘ ‘) cars = [‘aa‘,‘bb‘,‘cc‘] // list类型 for car in cars: print(car) d = {‘one‘:1, "tow":2} // 字典类型, for key in d: // 默认是key print(key + " " + str(d[key]))
t = (1, 2, 3) // 元组
for item in t:
print(item)
2 循环多个
zip函数:打包
l1 = [1, 2, 3] l2 = [6, 7, 8, 20] for k in zip(l1, l2): print(k)
result:
(1, 6)
(2, 7)
(3, 8)
以上是关于二十八 Python的for 循环的主要内容,如果未能解决你的问题,请参考以下文章
Python学习第二十八课——Django(templates)
Python+Selenium练习(二十八)-处理Alert弹窗