up vote 6 down vote favorite
1
share [g+] share [fb]

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.

link|improve this question

77% accept rate
4  
You may want to read about it in the docs: docs.python.org/tutorial/… – Nadia Alramli Feb 10 '10 at 16:18
feedback

2 Answers

up vote 17 down vote accepted

Generally you can use the func(*tuple) syntax. You can even pass a part of the tuple, which seems like what you're trying to do here:

t = (2010, 10, 2, 11, 4, 0, 2, 41, 0)
dt = datetime.datetime(*t[0:7])

This is called unpacking a tuple, and can be used for lists too. Here's another example (from the Python tutorial):

>>> range(3, 6)             # normal call with separate arguments
[3, 4, 5]
>>> args = [3, 6]
>>> range(*args)            # call with arguments unpacked from a list
[3, 4, 5]
link|improve this answer
2  
It works for arbitrary iterables. – Mike Graham Feb 10 '10 at 16:36
@Mike: nice, thanks – Eli Bendersky Feb 11 '10 at 4:13
I was about to ask for this, thanks! – ComputationalSocialScience Mar 13 '11 at 21:20
feedback

http://docs.python.org/tutorial/controlflow.html#unpacking-argument-lists

 dt = datetime.datetime(*t[:7])
link|improve this answer
Should be dt = datetime.datetime(*t[:7]) according to OPs example. – muhuk Feb 10 '10 at 17:00
Yes your right. – Charles Beattie Feb 11 '10 at 21:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.