ttk.Combobox – Clear values drop-down

img

To clear the values in the drop-down menu of a ttk.Combobox, set values to an empty tuple.

1
my_combobox.configure(values=())

img

Now the combobox values drop-down menu is empty.