#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'Hello there {name} ') budget = int(input('What is your budget? ')) #Food item variables smoothie = 6.5 pie = 6 wedges = 4.5 new_budget = 0 keep_going == "" while keep_going == "": food = input('What would you like to purchase? A smoothie, a pie, or wedges? ') if budget >= wedges: if food == 'smoothie' or 'Smoothie': new_budget = budget - smoothie if new_budget > 0: print(f'Your selected item is a smoothie. You have {new_budget} dollars left of your original {budget}.') else: print('You dont have enough money! ') elif food == 'pie' or 'Pie': new_budget = budget - pie if new_budget > 0: print(f'Your selected item is a pie. You have {new_budget} dollars left of your original {budget}.') else: print('You dont have enough money! ') elif food == 'wedges' or 'Wedges': new_budget = budget - wedges if new_budget > 0: print(f'Your selected item is wedges. You have {new_budget} dollars left of your original {budget}.') else: print('You dont have enough money! ') else: print('That option is unavailiable') #display output print('The program has ended.')