For example, if I have
a=[[\'a\',\'b\',\'c\'],[1,2,3],[\'d\',\'e\',\'f\'],[4,5,6]]
How can I get each element of a to be an argume
a
Chain()?
http://docs.python.org/library/itertools.html#itertools.chain
nm, read it wrong. That won't work.
Using sequence unpacking (thanks to delnan for the name):
zip(*a)