博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python range( )函数
阅读量:5249 次
发布时间:2019-06-14

本文共 429 字,大约阅读时间需要 1 分钟。

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

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

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

[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

 

转载于:https://www.cnblogs.com/Forever77/p/9745194.html

你可能感兴趣的文章
Java线程面试题
查看>>
Paper Reading: Relation Networks for Object Detection
查看>>
day22 01 初识面向对象----简单的人狗大战小游戏
查看>>
mybatis源代码分析:深入了解mybatis延迟加载机制
查看>>
Flask三剑客
查看>>
Hibernate-缓存
查看>>
【BZOJ4516】生成魔咒(后缀自动机)
查看>>
提高PHP性能的10条建议
查看>>
svn“Previous operation has not finished; run 'cleanup' if it was interrupted“报错的解决方法...
查看>>
熟用TableView
查看>>
Java大数——a^b + b^a
查看>>
poj 3164 最小树形图(朱刘算法)
查看>>
服务器内存泄露 , 重启后恢复问题解决方案
查看>>
android一些细节问题
查看>>
KDESVN中commit时出现containing working copy admin area is missing错误提示
查看>>
利用AOP写2PC框架(二)
查看>>
【动态规划】skiing
查看>>
java定时器的使用(Timer)
查看>>
ef codefirst VS里修改数据表结构后更新到数据库
查看>>
boost 同步定时器
查看>>