How could I unpack a tuple of unknown to, say, a list?
I have a number of columns of data and they get split up into a tuple by some function. I want to unpack this
You can use the asterisk to unpack a variable length. For instance:
foo, bar, *other = funct()
This should put the first item into foo, the second into bar, and all the rest into other.
foo
bar
other
Update: I forgot to mention that this is Python 3.0 compatible only.