[EMAIL PROTECTED] kirjoitti:
> Hi,
> 
> I have the following tuple -
> 
> t = ("one","two")
> 
> And I can build a dictionary from it as follows -
> 
> d = dict(zip(t,(False,False)))
> 
> But what if my tuple was -
> 
> t = ("one","two","three")
> 
> then I'd have to use -
> 
> d = dict(zip(t,(False,False,False)))
> 
> Therefore, how do I build the tuple of Falses to reflect the length of
> my t tuple?
> 
> Thanks for your help,
> 
> Barry.
> 

Another variation:

d = dict((x, False) for x in t)

Cheers,
Jussi
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to