Skip to content Skip to sidebar Skip to footer

Get Multiple Items Chosen In A Listbox And Populate New List With The Values, Using Tkinter

I am trying to take the selection from a listbox and populate a new list with it, and it will be multiple items. I can't figure this out, here's what i have so far (and I need the

Solution 1:

I figured it out, instead of

for i in lst_select:
  lbox.get(i)
  UsrFCList.append(i)

It was

for i in lst_select:
    UsrFCList.append(lbox.get(i))

Post a Comment for "Get Multiple Items Chosen In A Listbox And Populate New List With The Values, Using Tkinter"