I have a listbox:
self.listBox = Listbox(self.master,
height = 34,
width = 38)
self.listBox.grid(row = 3, column = 0, rowspan = 7, sticky = W)
There are many items in the listbox. I tried to select two of them by holding down the ctrl or shift key on the keyboard when selecting with the mouse, but it seems that by default it is not possible to select multiple items. How can I overcome the issue?
I'm using Python 3.5 on Linux Mint Xfce.