tkinter treeview get selected item code example
Example: python tkinter treeview get selected item
def selectItem(a):
curItem = tree.focus()
print tree.item(curItem)
def selectItem(a):
curItem = tree.focus()
print tree.item(curItem)