最佳答案
这段 Python 代码是否可以使用 itertools 和 set 来缩短并保持可读性?
result = {}
for widget_type, app in widgets:
if widget_type not in result:
result[widget_type] = []
result[widget_type].append(app)
我只能想到这一点:
widget_types = zip(*widgets)[0]
dict([k, [v for w, v in widgets if w == k]) for k in set(widget_types)])