This is ugly. How would you do it?
import datetime
t= (2010, 10, 2, 11, 4, 0, 2, 41, 0)
dt = datetime.datetime(t[0], t[1], t[2], t[3], t[4], t[5], t[6])
Thanks in advance.
|
|
Generally you can use the
This is called unpacking a tuple, and can be used for lists too. Here's another example (from the Python tutorial):
|
|||||||||
|
|
http://docs.python.org/tutorial/controlflow.html#unpacking-argument-lists
|
|||||||
|