Python Golf: what's the most concise way of turning this list of lists into a dictionary: - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T23:19:25Zhttp://stackoverflow.com/feeds/question/534608http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/534608/python-golf-whats-the-most-concise-way-of-turning-this-list-of-lists-into-a-dic3Python Golf: what's the most concise way of turning this list of lists into a dictionary:pytrn2009-02-10T22:49:02Z2009-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#53461514Answer by MizardX for Python Golf: what's the most concise way of turning this list of lists into a dictionary:MizardX2009-02-10T22:51:09Z2009-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>>>> names = [['Tom', 'Dick'], ['Harry', 'John', 'Mike'], ['Bob']]
>>> names_dict = dict((name,index)
... for index,lst in enumerate(names)
... for name in lst)
>>> 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#53468615Answer by Kiv for Python Golf: what's the most concise way of turning this list of lists into a dictionary:Kiv2009-02-10T23:09:25Z2009-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>>>> names = [['Tom', 'Dick'], ['Harry', 'John', 'Mike'], ['Bob']]
>>> names_dict = {name:index for index, lst in enumerate(names) for name in lst}
>>> names_dict
{'Tom': 0, 'Mike': 1, 'Dick': 0, 'Harry': 1, 'Bob': 2, 'John': 1}
</code></pre>