How do I print and have user input in a text box in tkinter, Python 3.2.5? How do I print and have user input in a text box in tkinter, Python 3.2.5? tkinter tkinter

How do I print and have user input in a text box in tkinter, Python 3.2.5?


Here is a basic Tk window that will take input for month, day and year

from Tkinter import *root = Tk()label1 = Label( root, text="Month(MM)")E1 = Entry(root, bd =5)label2 = Label( root, text="Day(DD)")E2 = Entry(root, bd =5)label3 = Label( root, text="Year(YYYY)")E3 = Entry(root, bd =5)def getDate():    print E1.get()    print E2.get()    print E3.get()submit = Button(root, text ="Submit", command = getDate)label1.pack()E1.pack()label2.pack()E2.pack()label3.pack()E3.pack()submit.pack(side =BOTTOM) root.mainloop()

when you click submit it prints the month day and year and im sure you can figure it out from there

EDIT

here is an example of a text box to display the diary entry:

from Tkinter import *root = Tk()text = Text(root)text.insert(INSERT, diary)text.pack()root.mainloop()

in this example diary is the diary entry string!

Good Luck :)