# This program will ask for a name and the budget. It will check the budget range and #display a message # Collect input name = input("what is your name? ") print(f"kia ora {name}") budget =int(input("How much is your budget to spend ")) # variables smoothie = 6.5 pie = 6 wedges = 4.5 keep_going = "" while keep_going == "": food =input("what do you wnat to buy? A smoothie, pie or wedges? ") if food == "smoothie": new_budget = budget - smoothie print (f"{name} you selected smoothie, you have {new_budget} remaing.") elif food == "pie": new_budget = budget - pie print (f"{name} you selected pie, you have {new_budget} remaing.") elif food == "wedges": new_budget = budget - wedges print (f"{name} you selected wedges, you have {new_budget} remaing.") else: print("you have entered an invalid option") keep_going = input ("do you want to select another item? Enter yes or press the enter button to continue or no to exit. ") # Display output print("The program has ended")