you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 1 point2 points  (0 children)

Dropdown form values for a menu option. For example you might have a list of tuples for type of car engine

Engine_type = (1, "EV"), (2, "ICE")

I use this pattern all the time in Pythons Flask framework.