Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialjayda hendrickson
3,413 PointsWhat exactly is the 'menu'?
I'm not completely sure on what exactly a menu is
1 Answer
Megan Amendola
Treehouse TeacherThe menu it is talking about is the program's menu. When you run it, it will ask if you want to 1) Add an entry, 2) View an entry, etc. Think of it like a video game menu where it's asking you if you want to start a new game or view the settings. Or a program menu like Google Drive where there's a menu to Upload items or create documents. The menu is just to show the user how you can interact with the program.
I believe it ends up looking something similar to this:
1) Add entry
2) View entry
What would you like to do?
tariqasghar
UX Design Techdegree Graduate 30,519 Pointstariqasghar
UX Design Techdegree Graduate 30,519 PointsHi Megan;
I have this question that what is menu - dict, list or tuple? What is OrderedDict returning?
Thanks.
Megan Amendola
Treehouse TeacherMegan Amendola
Treehouse TeacherAn ordered dictionary is just a dictionary that is ordered. 'Regular' dictionaries do not preserve order. There's more info here: https://www.geeksforgeeks.org/regular-dictionary-vs-ordered-dictionary-in-python/