python for语句不设置循环次数怎么用?
352次观看
标签:
语句
次数
python
老师回答
在Python的for循环里,循环遍历可以写成:
for item in list:
print item
它可以在不设置循环次数的情况下遍历列表中的所有元素。
我们可以使用下面的方法统计循环的次数:
count=0
for item in list:
print item
count +=1
if count % 10 == 0:
print 'did ten'
更多Python知识请关注Python自学网
©本文版权归环球青藤所有,任何形式转载请联系我们。
免费直播
精选课程
相关推荐