Skip to content

Instantly share code, notes, and snippets.

@picanumber
Created March 21, 2016 22:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save picanumber/b5541f70194a9e98c6d9 to your computer and use it in GitHub Desktop.
Save picanumber/b5541f70194a9e98c6d9 to your computer and use it in GitHub Desktop.
def custom_range(max):
a = 0
while a < max:
yield a
a += 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment