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

python range( )函数

时间:2018-10-05 19:02:15      阅读:665      评论:0      收藏:0      [点我收藏+]

标签:item   div   一个   没有   存在   col   nbsp   test   内存   

v=range(n),表示创建的范围是0-(n-1)

v=range(m,n,a),表示创建的范围为m-(n-1),步长为a

在python3中,序列刚创建时,每一个单个的值并没有在内存中存在,进行循环时才会在内存中一个一个创建,而在python2中,序列刚创建时就在内存中存在

0  2  4  6  8  
[root@oldboy test]# cat range.py 
v1=range(10)
for item in v1:
    print(item,end=  )
print(‘‘)
v2=range(0,10,2)
for item in v2:
    print(item,end=  )
print(‘‘)
[root@oldboy test]# python range.py 
0  1  2  3  4  5  6  7  8  9  
0  2  4  6  8  

 

python range( )函数

标签:item   div   一个   没有   存在   col   nbsp   test   内存   

原文地址:https://www.cnblogs.com/Forever77/p/9745194.html

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