像对象一样的django queryset的元组列表

时间:2018-03-23 13:37:43

标签: python django

我有两个列表如下:

month = ["Jan", "Feb" , ..., "Dec"]
temperature = [34, 35, .... , 29 ]

我可以使用上面的列表来制作使用zip

的元组列表
month_temperature  = list(zip(month, temperature))
# month_temperature = [ ("Jan", 34), ("Feb", 35), ..., ("Dec", 29)]

考虑一个与mon_temp非常相似的变量month_temperature(就像django查询集),它允许我这样做:

print(mon_temp[0].month) # Jan
print(mon_temp[0].temperature) # 34 

是否可以创建像mon_temp这样的变量?任何提示?

1 个答案:

答案 0 :(得分:1)

使用itemA

namedtuple