#(These don't cont as code)# # You will always need this when using Pythons GUI# from Tkinter import * #This makes a window in Tkinter, it is like a root window/defualt# window = Tk() #This has to do with making actual text box, Tkinter recognizes Text(window) #as a premade object# text = Text(window) #This make the Text box show up by packing it into the window# text.pack() #You also always need this so the programs keeps running #for more than a split second# window.mainloop() #This is how to make a very simple one, but for more advanced appliocations #you would want a diffrent setup#