各位版上的大大下午好。
我有一個需求是需要用for loop讀取Label值。請問我應該要怎麼做?
底下的Code是我自己的嘗試,但是失敗了。
請高手指導要如何修改
Label210=tk.Label(Iteminfo,text="外徑",anchor='center')
Label210.grid(row=1,column=0,sticky=tk.W+tk.E,padx=20,pady=5)
Label220=tk.Label(Iteminfo,text="內徑",anchor='center')
Label220.grid(row=2,column=0,sticky=tk.W+tk.E,padx=20,pady=5)
Label230=tk.Label(Iteminfo,text="沖孔",anchor='center')
Label230.grid(row=3,column=0,sticky=tk.W+tk.E,padx=20,pady=5)
Label240=tk.Label(Iteminfo,text="高度",anchor='center')
Label240.grid(row=4,column=0,sticky=tk.W+tk.E,padx=20,pady=5)
Label250=tk.Label(Iteminfo,text="板厚",anchor='center')
Label250.grid(row=5,column=0,sticky=tk.W+tk.E,padx=20,pady=5)
def Iteminfo_spec_search():
table_name='ItemSpec' #指定資料表名稱
input_list=[]
for index_r in range(1,6):
#從第二行開始抓資料,因應layout的做法。
input_list.append(('Label2'+str(index_r)+str(0)).cget("text"))
#cget取得Label的內容
for index_c in range(1,4):
input_list.append(globals()['Entry2'+str(index_r)+str(index_c)]
.get())
#將Entry的值放進List裡面
print(input_list)
問題出在input_list.append用cget取得label資料這一行。
請問,如果我要用這種方法取得資料,我應該要怎麼改寫呢?
感謝。