Skip to content

Instantly share code, notes, and snippets.

@binki
Created November 3, 2014 01:01
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 binki/ae2ddd809fdc73256b63 to your computer and use it in GitHub Desktop.
Save binki/ae2ddd809fdc73256b63 to your computer and use it in GitHub Desktop.
ohnobinki@ohnopublishing ~ $ python
Python 2.7.1 (r271:86832, May 14 2011, 10:43:48)
[GCC 4.5.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> range(0,2)
[0, 1]
>>> range(*[0,2])
[0, 1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment