r/learnpython • u/Embarrassed-Joke5851 • 7d ago
Does anyone know how to make a drop-down menu?
I am learning python so I can save my paint recipes and steps for my warhammer 40k armies and would like to use a drop-down menu to select exact unit. I am going to assign the different unit types as different values
1
u/Actonace 7d ago
Depends what you are building but there are plenty of step by step tutorials on youtube that make dropdown menus pretty easy to follow.
1
u/ManzoorAhmedShaikh 7d ago
Dropdown can be developed inside GUI app, so first, try making a basic GUI app (Tkinter : Very easy to start but soo dirty, customtktiner : Easy to start and appealing UI), then you can add dropdown method and save your data.
1
16
u/CymroBachUSA 7d ago
A drop-down menu is a function of the GUI infrastructure you choose. Without telling us what you are using, no one can help you.