问题 I was trying to make the currently selected List box item to be printed out. For example, when i select item "one", it should print out "one" and when i select item "two", it should print out "two" etc. The following is what i have tried. from Tkinter import* root=Tk() sizex = 600 sizey = 400 posx = 40 posy = 20 root.wm_geometry("%dx%d+%d+%d" % (sizex, sizey, posx, posy)) itemsforlistbox=['one','two','three','four','five','six','seven'] def CurSelet(evt): value=str((mylistbox.get(ACTIVE)))