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