码迷,mamicode.com
首页 > 编程语言 > 详细

Python—for循环和range()内建函数

时间:2018-03-08 12:08:19      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:bre   元素   逗号   换行   序列   list   div   情况下   tin   

for循环语法结构列如序列或迭代器作为其参数每次迭代其中一个元素
与while循环一样,支持break,continue,else语句
一般情况下,循环次数未知采用while循环,循环次数已知采用for
>>> for ch in abcd:
...     print ch
... 
a
b
c
d
>>> for ch in ancd:
...     print ch,
... 
a n c d

print语句默认会给每一行添加一个换行符,只要在print语句后面添加一个逗号,就可以不换行.

range函数

for循环常与range函数一起使用
range函数提供循环条件
range函数的完整语法为:
range(start,end,step=1)
>>> range(1,4)
[1, 2, 3]
>>> range(4)
[0, 1, 2, 3]
>>> range(1,4,2)
[1, 3]
rage会生成一个列表
打印列表的下标和值
alist=[‘tom‘,‘bob‘,‘vs‘,‘cm‘,]
>>> for i in range(len(alist)): ... print "%s:%s" % (i,alist[i]) ... 0:tom 1:bob 2:vs 3:cm

 

Python—for循环和range()内建函数

标签:bre   元素   逗号   换行   序列   list   div   情况下   tin   

原文地址:https://www.cnblogs.com/xiaobai-yemao/p/8527170.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!