Python Forum
Menu Choice Selection not Working
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Menu Choice Selection not Working
#2
I've always preferred using True ina while statement.
Your code modified a little

def main_menu():
    print('\nplease make a selection\n')
    print(", ".join(['1 - Option 1', '2 - Option 2', '3 - Option 3 (Quit)']))

while True:
    main_menu()
    choice = int(input('Make a choice\n>> '))
    if choice == 1:
        print('\nYou chose option 1\n')
    elif choice == 2:
        print('\nYou chose option 2\n')
    elif choice == 3:
        print('\nYou chose option 3.\nGoodbye!')
        break
    else:
        print('Please choose one of the available options.')
output
Output:
please make a selection 1 - Option 1, 2 - Option 2, 3 - Option 3 (Quit) Make a choice >> 2 You chose option 2 please make a selection 1 - Option 1, 2 - Option 2, 3 - Option 3 (Quit) Make a choice >> 1 You chose option 1 please make a selection 1 - Option 1, 2 - Option 2, 3 - Option 3 (Quit) Make a choice >> 3 You chose option 3. Goodbye!
ChLenx79 and BliepMonster like this post
I welcome all feedback.
The only dumb question, is one that doesn't get asked.
My Github
How to post code using bbtags


Reply


Messages In This Thread
Menu Choice Selection not Working - by ChLenx79 - Nov-21-2022, 10:17 AM
RE: Menu Choice Selection not Working - by menator01 - Nov-21-2022, 10:48 AM
RE: Menu Choice Selection not Working - by ChLenx79 - Nov-21-2022, 02:42 PM
RE: Menu Choice Selection not Working - by rob101 - Nov-21-2022, 10:51 AM
RE: Menu Choice Selection not Working - by snippsat - Nov-21-2022, 02:55 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  combobox_callback(choice choice part of openfile name (kind of dependency) janeik 9 1,608 Sep-10-2023, 10:27 PM
Last Post: janeik
  Menu selection using function leodavinci1990 8 14,913 Dec-05-2019, 01:48 PM
Last Post: snippsat
  random selection of song and artist not working Unknown_Relic 2 2,422 Nov-08-2019, 02:06 PM
Last Post: perfringo
  webbrowser and menu not working. sik 1 1,898 Oct-31-2019, 03:39 AM
Last Post: newbieAuggie2019
  Simple cli menu quits on selection pamamolf 19 9,846 Oct-26-2017, 02:09 PM
Last Post: sparkz_alot

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020