Python Forum
Menu Choice Selection not Working
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Menu Choice Selection not Working
#1
Morning all. Hope you are all well.

So I have recently started to learn python and i am a bit stuck.

I am working on a simple menu but for some reason, it just keeps looking even if i choose the option to quit (option 3).

Anyone able to tell me what I am doing wrong please? (Sorry i tried to use code snippet, but didn't work, hence "quote" instead, and hence the missing indentation)

choice = "0"

def mainMenuChoice():
	print("Please make a selection...")
	print("")
	print("1 - Option One")
	print("2 - Option Two")
	print("3 - Option Three (Quit)")

	menuChoice = input("Enter your choice: ")

	return menuChoice



while choice != 3 :

	choice = mainMenuChoice()

	if choice == 1:
		print("You chose option 1")

	elif choice == 2:
		print("You chose option 2")

quit()

Image attached...
Ok i found it... I need to convert the return value to an integer as the default is a string value and thus does not recognise the response as a correct value.
Larz60+ write Nov-21-2022, 10:45 AM:
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.

Please use bbcode (python) code tags, rather than attachments.

Attached Files

Thumbnail(s)
       
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 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 3,530 Sep-10-2023, 10:27 PM
Last Post: janeik
  random.choice HELP samuelbachorik 4 3,300 Aug-18-2021, 03:24 PM
Last Post: naughtyCat
  ???: if "{choice}" in self._command BaiYouLing4 3 2,938 Aug-23-2020, 05:40 AM
Last Post: BaiYouLing4
  Menu selection using function leodavinci1990 8 19,223 Dec-05-2019, 01:48 PM
Last Post: snippsat
  random selection of song and artist not working Unknown_Relic 2 3,114 Nov-08-2019, 02:06 PM
Last Post: perfringo
  webbrowser and menu not working. sik 1 2,410 Oct-31-2019, 03:39 AM
Last Post: newbieAuggie2019
  Simple cli menu quits on selection pamamolf 19 12,332 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