我正在尝试在文本框实例名称中使用变量,以便在for循环中对它们进行随机播放。例如,我有14个文本小部件(infoBox1到InfoBox14),我试图从列表中填充。所以我要做的是以下内容:
x=1
for item in finalList:
self.infoBox(x).insert(END, item)
x += 1
然后在x增加时填充框。有人可以帮忙吗?
答案 0 :(得分:3)
你不需要名字来做这件事。您可以将小部件放在列表中,然后使用索引访问这些小部件。
#you can create like this. Used -1 as index to access last added text widget
text_list = []
for idx in range(14):
text_list.append(tkinter.Text(...))
text_list[-1].grid(...)
#then you can easily select whichever you want just like accessing any item from a list
text_list[x].insert(...)
#or directly
for idx, item in enumerate(finalList):
text_list[idx].insert("end", item)
答案 1 :(得分:1)
可以做你想做的事。
我没有遇到过需要这样做的情况。
以下是使用exec
执行每个循环命令的示例。
有关exec
声明的更多信息,您可以提交一些文档here
注意:避免使用此方法并使用list / dict方法。这个例子只是为了提供有关如何在python中实现的知识。
from tkinter import *
class tester(Frame):
def __init__(self, parent, *args, **kwargs):
Frame.__init__(self, parent, *args, **kwargs)
self.parent = parent
self.ent0 = Entry(self.parent)
self.ent1 = Entry(self.parent)
self.ent2 = Entry(self.parent)
self.ent0.pack()
self.ent1.pack()
self.ent2.pack()
self.btn1 = Button(self.parent, text="Put numbers in each entry with a loop", command = self.number_loop)
self.btn1.pack()
def number_loop(self):
for i in range(3):
exec ("self.ent{}.insert(0,{})".format(i, i))
if __name__ == "__main__":
root = Tk()
app = tester(root)
root.mainloop()