我有两个列表如下:
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
这样的变量?任何提示?
答案 0 :(得分:1)
使用itemA
namedtuple