for循环
像while循环一样,for可以完成循环的功能。
在Python中 for循环可以遍历任何序列的项目,如一个列表或者一个字符串等。
- for循环的格式
for 临时变量 in 列表或者字符串等可迭代对象:
循环满足条件时执行的代码
例子:
name = 'itheima'
for x in name:
print(x)
运行结果:
# range(5)表示可以循环5次
for i in range(5):
print(i)
# 效果等同于 while 循环的:
i = 0
while i < 5:
print(i)
i += 1
我写的一篇爬虫帖子里用到了比较多的for循环,大家可以学习使用,帖子有源码哦。
地址如下
简书:https://www.jianshu.com/p/51dcd88168c5
"码农不头秃"公众号,欢迎大家转发点赞,谢谢大家的鼓励。