Python Forum
Interactive Menu, String Search?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Interactive Menu, String Search?
#1
Hi everyone, I'm just starting my journey with Python.
Here is something I'm working on today. It is an interactive restaurant menu.
I'm able to get it to run with no errors/exceptions. There is a part of the program to have the guest
input an item to the menu. For some reason, this item is added but can't be ordered.
Everything else seems to work.


menu = "salad, pasta, sandwich, pizza, drinks, dessert "
print("Our menu is:", menu)

menu2 = input("Would you like to add something to the menu?")

menu3 = menu + menu2

print(menu3)

menu_ask = input("What would you like from the menu?") 

if menu_ask.casefold() in menu3:
	print("Yes, we have ", menu_ask, " tonight.")
else:
	print("Sorry, we don't have ", menu_ask, " tonight.") 


Here is an example of the output:

Our menu is: salad, pasta, sandwich, pizza, drinks, dessert
Would you like to add something to the menu? Pie
salad, pasta, sandwich, pizza, drinks, dessert Pie
What would you like from the menu? Pie
Sorry, we don't have Pie tonight.

I actually just got it to work. I had some lines of code commented out that I removed and now it works.

Now it's not working. Driving me nuts.

if menu_ask.casefold() in menu3.casefold():
This solved it.
Reply


Messages In This Thread
Interactive Menu, String Search? - by maggotspawn - May-10-2020, 11:07 PM
RE: Interactive Menu, String Search? - by menator01 - May-11-2020, 12:41 PM
RE: Interactive Menu, String Search? - by menator01 - May-11-2020, 05:25 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Writing a Linear Search algorithm - malformed string representation Drone4four 10 1,033 Jan-10-2024, 08:39 AM
Last Post: gulshan212
  Interactive plots that can be embed in web page mouse9095 1 626 Jun-12-2023, 04:51 PM
Last Post: deanhystad
  Search multiple CSV files for a string or strings cubangt 7 8,146 Feb-23-2022, 12:53 AM
Last Post: Pedroski55
  Search string in mutliple .gz files SARAOOF 10 7,016 Aug-26-2021, 01:47 PM
Last Post: SARAOOF
  fuzzywuzzy search string in text file marfer 9 4,673 Aug-03-2021, 02:41 AM
Last Post: deanhystad
  I want to search a variable for a string D90 lostbit 3 2,664 Mar-31-2021, 07:14 PM
Last Post: lostbit
  interactive map and function hurc60248 1 1,781 Jan-08-2021, 09:22 PM
Last Post: Larz60+
  how to pass the interactive string to Popen subprocess maiya 1 1,898 Sep-18-2020, 09:36 PM
Last Post: Larz60+
  String search in different excel Kristenl2784 0 1,718 Jul-20-2020, 02:37 PM
Last Post: Kristenl2784
  for / else not working in interactive mode Skaperen 4 2,592 Jul-17-2019, 06:16 PM
Last Post: Skaperen

Forum Jump:

User Panel Messages

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