I have some Tkinter code with a Label object. The user needs to be able to select text from the Label in order to copy the text (and paste into something else). However, it seems Labels aren't selectable? I can't figure out how to enable this... any suggestions?
from Tkinter import *
master = Tk()
label = Label(master, text="Example: foo_bar(1,2,3)")
label.pack()
mainloop()