I tried a search on here but not come across the correct answer. I have a listbox which is setup with selection=\'multiple\'. I then try to obtain a list
selection=\'multiple\'
To get a list of text items selected in a listbox, I find the below solution to be the most elegant:
selected_text_list = [listbox.get(i) for i in listbox.curselection()]