我是Python的新手,并且我有两个很好的脚本。
它们从指定的位置运行并提取一系列PDF,然后搜索某些信息。
这些脚本与Tkinter GUI绑定,后者具有触发按钮来运行它们。
但是,我想将输出(列出结果等)打印到Tkinter GUI而不是IDLE,但我不知道如何。
感谢您的帮助。
from Tkinter import *
import ttk
from Tkinter import Tk, Label, Button
import os
from subprocess import check_output
root = Tk()
style = ttk.Style()
root.title("Search")
Canvas = Canvas(root,width = 300, height = 150)
Canvas.pack()
def callback():
execfile("file1.py")
Button = ttk.Button (root, text='Find', command = callback)
def callback2():
execfile("File2.py")
Button2 = ttk.Button (root, text='Get', command = callback2)
Button.pack()
Button2.pack()
root.mainloop()