Да дело в том, что я не совсем понимаю даже как сделать вывод в консоль. Вот все что у меня есть:
from tkinter import *
import re
import os
import subprocess
def window_deleted():
root.quit()
def about():
win = Toplevel(root)
lab = Label(win,text="Это просто программа-тест")
lab.pack()
def close_win():
root.destroy()
def export(event):
cmd=('call bat1.bat')
subprocess.check_call(cmd, shell=True)
def import(event):
cmd=('call bat2.bat')
subprocess.check_call(cmd, shell=True)
root= Tk()
m = Menu(root)
root.config(menu=m)
root.title(u'SecurytiUp')
root.protocol('WM_DELETE_WINDOW', window_deleted)
w, h = root.winfo_screenwidth() - 4, root.winfo_screenheight() - 4
root.geometry("{}x{}+0+0".format(w, h))
root.attributes('-fullscreen', 1)
frame1=Frame(root,width=100,heigh=100,bg='green',bd=5)
frame1.pack()
button1 = Button(frame1, text="Экспорт",width=30,height=5, bg="white",fg="blue")
button1.bind("<Button-1>",export)
button1.pack()
button2 = Button(frame1, text="Импорт",width=30,height=5, bg="white",fg="blue")
button2.bind("<Button-1>",import)
button2.pack()
root.mainloop()