当前位置:天才代写 > tutorial > Python教程 > python mxrange 模拟 系统 xrange

python mxrange 模拟 系统 xrange

2018-05-17 08:00 星期四 所属: Python教程 浏览:477

python">def mxrange(start,end=0,step=1):
    (start,end) = start>end and (end,start) or (start,end)
    while start < end:
        yield start
        start+=step      

print [i for i in xrange(5)],[i for i in mxrange(5)]
print [i for i in xrange(1,5)],[i for i in mxrange(1,5)]
print [i for i in xrange(4,5,2)],[i for i in mxrange(4,5,2)]
'''
[0, 1, 2, 3, 4] [0, 1, 2, 3, 4]
[1, 2, 3, 4] [1, 2, 3, 4]
[4] [4]
'''

标签:python

 

    关键字:

天才代写-代写联系方式