I tried w/ my following code:
from Tkinter import *
master = Tk()
Label(master, text="Username").grid(row=0, sticky=W)
Label(master, text="Password").grid(row=1, sticky=W)
e1 = Entry(master)
e2 = Entry(master,show="*")
def login():
global e2,e1
print e2
print e1
e3 = Button(master,text="Login",command=login).grid(row=3, sticky=W+E+S+N)
e1.grid(row=0, column=1)
e2.grid(row=1, column=1)
master.mainloop()
it outputted something like:
.11972160
.11972080
What/should I, can I do?
--
http://mail.python.org/mailman/listinfo/python-list