Arnaud Delobelle wrote:
macm<[email protected]> writes:Hi Folks How convert list to nested dictionary?l['k1', 'k2', 'k3', 'k4', 'k5']result{'k1': {'k2': {'k3': {'k4': {'k5': {}}}}}} Regards macmreduce(lambda x,y: {y:x}, reversed(l), {})
d={}
while L : d={L.pop():d}
--
http://mail.python.org/mailman/listinfo/python-list
