1) Read in Menu From File (this is a practice test question) Write…
Question Answered step-by-step 1) Read in Menu From File (this is a practice test question) Write… 1) Read in Menu From File (this is a practice test question)Write function read_menu() that takes one parameter (string datatype), the filename of the menu. The function will return a list of the items and their prices. You can assume the contents of the file are valid.Example file:1 piece of chicken, 3 6 pieces of chicken, 14.95 21 pieces of chicken, 34.95 Popcorn chicken, 5.95 3 wicked wings, 3.95 5 original tenders, 9.95 6 nuggets, 5.95 Original recipe burger, 5.95 Example return value:[[“1 piece of chicken”, 3], [“6 pieces of chicken”, 14.95], [“21 pieces of chicken”, 34.95], [“Popcorn chicken”, 5.95], [“3 wicked wings”, 3.95], [“5 original tenders”, 9.95], [“6 nuggets”, 5.95], [“Original recipe burger”, 5.95]] 2) Order ItemsWrite function order_items() that takes one parameter (the list of menu items), displays the menu items with the price, and continuously prompts the user to enter their choice. The function then returns the a list of lists containing the items user chose ( [[


