How to convert list of key-value tuples into dictionary? December 2, 2022 by Tarik >>> dict([('A', 1), ('B', 2), ('C', 3)]) {'A': 1, 'C': 3, 'B': 2}