Почему список, содержащий двухэлементные кортежи, не преобразуется в словарь?
Используется Python 3.6.
>>> pythons = { 'Chapman': 'Graham', 'Cleese': 'John', 'Idle': 'Eric', 'Jones': 'Terry', 'Palin': 'Michael', } >>> type(pythons) <class 'dict'=""> >>> pythons_2 = [('Chapman','Graham'), ('Cleese','John'), ('Idle','Eric'), ('Jones','Terry'), ('Palin','Michael')] >>> type(pythons_2) <class 'list'=""> >>> dict(pythons_2) {'Chapman': 'Graham', 'Cleese': 'John', 'Idle': 'Eric', 'Jones': 'Terry', 'Palin': 'Michael'} >>> type(pythons_2) <class 'list'=""> >>>