I have a nested list which looks something like this:<br><br>x = [[&#39;104&#39;, &#39;4501919&#39;], [&#39;104&#39;, &#39;237681091&#39;], [&#39;104&#39;, &#39;7669477&#39;], [&#39;100528064&#39;, &#39;315259111&#39;]]<br>

<br>I wish to convert this to a dict type which looks something like this:<br><br>y = {&#39;104&#39;: [&#39;4501919&#39;,  &#39;237681091&#39;,  &#39;7669477&#39;], &#39;100528064&#39;:  [&#39;315259111&#39;]}<br><br>Please help!<br>
<br>Thanks<br>Vikram<br><br><br>