Created
May 30, 2012 22:05
-
-
Save dreid/2839232 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> (foo, bar) = xrange(1) | |
Traceback (most recent call last): | |
File "<stdin>", line 1, in <module> | |
ValueError: need more than 1 value to unpack | |
>>> (foo, bar) = xrange(19) | |
Traceback (most recent call last): | |
File "<stdin>", line 1, in <module> | |
ValueError: too many values to unpack |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment