Skip to content

Instantly share code, notes, and snippets.

@liuyix
Created April 3, 2013 03:01
Show Gist options
  • Save liuyix/5298115 to your computer and use it in GitHub Desktop.
Save liuyix/5298115 to your computer and use it in GitHub Desktop.
self define python range
def xrange(start,end,step):
'''
range [start,end)
'''
r = start
while r < end:
yield r
r += step
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment