Python Golf: what's the most concise way of turning this list of lists into a dictionary: - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T23:19:25Z http://stackoverflow.com/feeds/question/534608 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/534608/python-golf-whats-the-most-concise-way-of-turning-this-list-of-lists-into-a-dic 3 Python Golf: what's the most concise way of turning this list of lists into a dictionary: pytrn 2009-02-10T22:49:02Z 2009-06-28T01:01:22Z <p>I have a list of lists that looks like this:</p> <pre><code>[['Tom', 'Dick'], ['Harry', 'John', 'Mike'], ['Bob']] </code></pre> <p>and I want to turn it into a dictionary where each key is a name and each value is a number corresponding to the position of its sublist in the list:</p> <pre><code>{'Tom': 0, 'Dick': 0, 'Harry': 1, 'John': 1, 'Mike': 1, 'Bob': 2} </code></pre> <p>I tried various list comprehensions, but I couldn't get it to work right with the nested lists. I could use a nested loop, like this:</p> <pre><code>names = [['Tom', 'Dick'], ['Harry', 'John', 'Mike'], ['Bob']] names_dict = {} for i, name_sublist in enumerate(names): for name in name_sublist: names_dict[name] = i </code></pre> <p>but I suspect there is a shorter, more elegant way of doing it.</p> http://stackoverflow.com/questions/534608/python-golf-whats-the-most-concise-way-of-turning-this-list-of-lists-into-a-dic/534615#534615 14 Answer by MizardX for Python Golf: what's the most concise way of turning this list of lists into a dictionary: MizardX 2009-02-10T22:51:09Z 2009-02-10T22:51:09Z <pre><code>names_dict = dict((name,index) for index,lst in enumerate(names) for name in lst) </code></pre> <p>Example:</p> <pre><code>&gt;&gt;&gt; names = [['Tom', 'Dick'], ['Harry', 'John', 'Mike'], ['Bob']] &gt;&gt;&gt; names_dict = dict((name,index) ... for index,lst in enumerate(names) ... for name in lst) &gt;&gt;&gt; names_dict {'Tom': 0, 'Mike': 1, 'Dick': 0, 'Harry': 1, 'Bob': 2, 'John': 1} </code></pre> http://stackoverflow.com/questions/534608/python-golf-whats-the-most-concise-way-of-turning-this-list-of-lists-into-a-dic/534686#534686 15 Answer by Kiv for Python Golf: what's the most concise way of turning this list of lists into a dictionary: Kiv 2009-02-10T23:09:25Z 2009-02-10T23:09:25Z <p>Same idea as MizardX, but slightly smaller and prettier in Python 3.0 using <a href="http://www.python.org/dev/peps/pep-0274/" rel="nofollow">dict comprehensions:</a></p> <pre><code>&gt;&gt;&gt; names = [['Tom', 'Dick'], ['Harry', 'John', 'Mike'], ['Bob']] &gt;&gt;&gt; names_dict = {name:index for index, lst in enumerate(names) for name in lst} &gt;&gt;&gt; names_dict {'Tom': 0, 'Mike': 1, 'Dick': 0, 'Harry': 1, 'Bob': 2, 'John': 1} </code></pre>