这个列表枚举方法可以更短吗?还是更像蟒蛇?

can this list enumerate method be shorter? or more pythonic?

我想看看我能不能让下面的代码更简洁?更短?作为一种学习方式。谢谢。
重点代码是这一行:

for i, (x, y) in enumerate(zip (self.labelVariable_list,self.monday_results)): 
    self.labelVariable_list[i].set(self.monday_results[i])

原码:

    for r in range(12):
        self.labelVariable=tk.StringVar()
        self.label = tk.Label(self, textvariable=self.labelVariable, borderwidth=1, relief="solid", width=9, height=1)
        self.label.grid(row=r+1, column=1)
        self.labelVariable_list.append(self.labelVariable)

    self.labelVariable_list[0].set(self.monday_results[0])
    self.labelVariable_list[1].set(self.monday_results[1])
    self.labelVariable_list[2].set(self.monday_results[2])
    self.labelVariable_list[3].set(self.monday_results[3])
    self.labelVariable_list[4].set(self.monday_results[4])
    self.labelVariable_list[5].set(self.monday_results[5])
    self.labelVariable_list[6].set(self.monday_results[6])
    self.labelVariable_list[7].set(self.monday_results[7])
    self.labelVariable_list[8].set(self.monday_results[8])
    self.labelVariable_list[9].set(self.monday_results[9])
    self.labelVariable_list[10].set(self.monday_results[10])
    self.labelVariable_list[11].set(self.monday_results[11])

我做到了:

    for r in range(12):
        self.labelVariable=tk.StringVar()
        self.label = tk.Label(self, textvariable=self.labelVariable, borderwidth=1, relief="solid", width=9, height=1)
        self.label.grid(row=r+1, column=1)
        self.labelVariable_list.append(self.labelVariable)

    for i, (x, y) in enumerate(zip (self.labelVariable_list, self.monday_results)):
        self.labelVariable_list[i].set(self.monday_results[i])

再次感谢您的评论。

您可以像这样尝试列表理解:

[list_1[i].set(list_2[i]) for i, (l1, l2) in enumerate(zip(list_1, list_2))]