David Bear wrote: > Is there an easy way to create a dictionary object with the members of > 'alist' being the keys in the dictionary, and the value of the keys set to > null?
adict = dict.fromkeys(alist) -- http://mail.python.org/mailman/listinfo/python-list