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 trialSafae Merigh
9,827 PointsMenu video
He refers to a previous video <here he introduced menus '"Every time we have built a menu so far..."). To what video in what course is he referring to?
1 Answer
Jennifer Nordell
Treehouse TeacherHi there, Safae Merigh ! I believe he might be referring to courses that have since been retired. Essentially, they were talking about a menu such that it prints out:
a) Do this thing
b) Do another thing
Then you would do something where you get the user's choice.
user_choice = input("Enter a or b: ")
if user_choice == "a":
# do this thing
elif user_choice == "b":
# do another thing
He's attempting to show you another way to code up a menu without a huge if/elif/else structure
Hope this helps!