document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. >>> L = [(\'Italy\', \'Rome\'), (\'France\', \'Paris\'), (\'US\', \'Washington DC\')]
  2. >>> dict(iter(L))
  3. {\'Italy\': \'Rome\', \'US\': \'Washington DC\', \'France\': \'Paris\'}
');