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