Objective: You are tasked with creating an interactive shopping game in Python that allows users to select, pay and buy items. Then you are asked to add more features!

Starter Code

<aside> ⚠️

Copy and paste the code below!

</aside>

# Welcome to the Simple Shop!
# Can you fix the bugs? Look for the 🐛 comments!

print("*******************")
print("WELCOME TO THE SHOP")
print("*******************")
print(" ")
print("Here's what we have:")
print("1. Ice cream - £2")
print("2. Crisps - £1")
print("3. Cola - £3")

choice = int(input("What would you like to buy? (1, 2 or 3): "))

if choice == 1:
    item = "Ice cream"
    price = 2
elif choice == 2:
    item = "Crisps"
    price = 1
elif choice == 3:
    item = "Cola"
    price = 5 # 🐛
else:
    print("Oops! That's not a valid choice!")
    exit()

print(f"You chose {item} and it costs £{price}")

print("\\n*******************")

money = int(input("How much money do you have? £"))

# 🐛
change = money + price

if change > 0:
    print(f"You paid with £{money} and for {item} and it costs £{price}")
    print(f"Your change is: £{change}")
    # 🐛
    print(f"Here's your {price}!")
else:
    print("Sorry, you don't have enough money!")

print()
print("*******************")
print("Thank you for shopping!")

1. Bug 🐛 Hunting!

Bugs are small errors in the code. The related lines have a 🐛 on them!

The code above has 3 mistakes, your first task is to correct them:

<aside>

Is the price for the Cola correct?

Run the program and try buying a Cola, how much does it say its worth? Fill it in

You chose Cola and it costs £_______

What do you expect the price to be instead?

You chose Cola and it costs £_______

Now, find the first line with a 🐛 and fix the bug!

</aside>

<aside>

Is the Change correct?

If you have £10 and buy and Ice Cream that is £2, how much change should you get?

£_________

How much change do you get from the machine?

You paid with £10 and for Ice cream and it costs £2
Your change is: £_____

On the second line with a 🐛, fix the bug!

</aside>

<aside>

What is the final output?

The final output Here's your 2! is giving a number instead of an item name like Crisps

What is the final output if you buy an Ice Cream ? Fill it in

Here's your _____!

On the third line with a 🐛, fix the bug!

</aside>

2. Add new features!

If you have fixed all of the bugs 🐛 continue to add more features

<aside>

Add a new item to the store

Think of your group’s favourite item and add it to the shop. It could be 🍬 Sweets, 🍕 Pizza, 🍔 Burger… anything! Give it a realistic price.

What did you add to the shop?

We added ____________________________

</aside>