码迷,mamicode.com
首页 > 其他好文 > 详细

自定义函数模拟range功能

时间:2018-01-02 23:31:21      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:for   自定义   stop   def   range   自定义函数   int   blog   class   

 def my_range(start,stop,step=1):
while start < stop:
yield start #start=1
start+=step #start=3
g=my_range(1,7,2)
print(g)
for i in my_range(1,7,2):
print(i)

自定义函数模拟range功能

标签:for   自定义   stop   def   range   自定义函数   int   blog   class   

原文地址:https://www.cnblogs.com/xiongrongqin/p/8179194.html

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