emmanuel segura wrote: > Ciao a tutti, > > Mi rispondo da solo > http://stackoverflow.com/questions/1747817/python-create-a-dictionary-with-list-comprehension
Bene, hai fatto prima di me! :) In ogni caso, per tutti (come riportato su SO): In Python 2.6 (o precedenti), `dict` constructor: `d = dict((x, x*2) for x in range(10))` In Python 2.7+ or 3, la "dict comprehension": `d = {x: x*2 for x in range(10)}` Ciao, V. _______________________________________________ Python mailing list Python@lists.python.it http://lists.python.it/mailman/listinfo/python