I want to populate combobox
with only one item if the name of the item appears more than one in the tuple only one name should appear.Also if the name is one in the tuple then the one should appear.
For example With my tuple i have sally
which is appearing twice and i want only one to to inserted in the combobox
I will appreciate your assistance to do that.
from tkinter import *
from tkinter import ttk
rows = ((1, 'ben', 'journalism', 18), (2, 'sally', 'performing arts', 22),
(3,"dan","information technology",32),
(2, 'ben', 'footballer', 70),(2, 'sally', 'arts', 56),(3,"dan","technology",52),(20,"frank","technology",52)
root = Tk()
root.geometry("200x200")
cb = ttk.Combobox(root)
cache = list()
for row in rows:
cache.append(row[1])
cb['values'] = cache
cb.pack()
root.mainloop()