假设我有一个对象列表,我想为每个对象创建一个字典并将我生成的所有字典放在一个列表中。我正在做的是以下内容:def f(x): some function f that returns a dictionary given xlist_of_dict = []xlist = [x1, x2, ..., xN]for x in xlist: list_of_dict.append(f(x))我想知道是否有比我提议的更有效(更快)的方法来创建字典列表。谢谢你。
添加回答
举报
0/150
提交
取消