import time
food_items = ['Chips', 'Hot Pretzel', 'Pizza', 'Hot Dog', 'Hamburger', 'Fries', 'Ice Cream', 'Cookie']
food_prices = [03.00, 05.00, 04.50, 10.00, 02.00, 03.75, 01.00, 02.00, 03.00]
def food_options(food_items, food_prices):
"""This function will display the food choices along with the prices that users will pay."""
return("Here is the list of food options to choose from our concession stand: ")
for value in range(len(food_items)):
return(food_items[value], '-', food_prices[value])
print(food_options(food_items, food_prices))
I am trying to make a concession stand in Python but am having an issue will a part of it because when I go to print the function, it doesn't print anything. I want to print out the each food option along with certain prices, but I haven't figured out how to do that! I was wondering if someone could help me.