python-3.x 如何在tkinter treeview widget中添加变量?

llmtgqce  于 2023-04-22  发布在  Python
关注(0)|答案(1)|浏览(147)

我需要将另一个命令的值添加到tkinter中的Treeview小部件的值中,但当我尝试gui中的值时,结果只是说“无”。

output = print("hello")
tree.insert('', 'end', text="1", values=(output, '' , '',''))

如何将此变量的值添加到widget中?

t0ybt7op

t0ybt7op1#

但是当我尝试的时候,GUI中的值最终只是说“无”。
更改此:

output = print("hello")
tree.insert('', 'end', text="1", values=(output, '' , '',''))

致:

output = "hello"
tree.insert('', 'end', text="1", values=output)

您将在第一列看到Hello。

相关问题