I am trying to make a python program in tkinter that has 3 drop down menus. The values of the second and 3rd menu need to change based on the value chosen on the first menu. For example:
menu1= [1 , 2]
if 1 is chosen:
menu2 = [2 , 3]
if 2 is chosen:
menu2 = [4, 5]
I hope this makes since and as always thank you for the help!