lst = [('the', 7), ('car', 3), ('and', 3), ('tent', 2)] newdct = {} [newdct.update({k: v}) for k, v in lst]