import random
cost = random.randint(500, 5000)
pounds = cost // 100
pence = cost % 100
print("You have found £", pounds, ".", pence)
print("That is:")
ten_pound_notes = pounds // 10
change = pounds % 10
print(ten_pound_notes % 10, "x £10 note(s)")
five_pound_notes = change // 5
change = change % 5
print(five_pound_notes, "x £5 note(s)")
print(change, "x £1 coin(s)")
fifty_p = pence // 50
change = pence % 50
print(fifty_p, "x 50p coin(s)")
twenty_p = change // 20
change = change % 20
print(twenty_p, "x 20p coin(s)")
print("and", change, "x 1p coin(s)")
# Challenges
# 1) Adapt the code to show how many £20 notes are needed
# 2) Adapt the code to allow the user to type in an amount instead of
# choosing an amount at random
# 3) Adapt the code to show how many 10p, 5p and 2p coins
import random
cost = random.randint(500, 5000)
pounds = cost // 100
pence = cost % 100
print("You have found £", pounds, ".", pence)
print("That is:")
ten_pound_notes = pounds // 10
change = pounds % 10
print(ten_pound_notes % 10, "x £10 note(s)")
five_pound_notes = change // 5
change = change % 5
print(five_pound_notes, "x £5 note(s)")
print(change, "x £1 coin(s)")
fifty_p = pence // 50
change = pence % 50
print(fifty_p, "x 50p coin(s)")
twenty_p = change // 20
change = change % 20
print(twenty_p, "x 20p coin(s)")
print("and", change, "x 1p coin(s)")
# Challenges
# 1) Adapt the code to show how many £20 notes are needed
# 2) Adapt the code to allow the user to type in an amount instead of
# choosing an amount at random
# 3) Adapt the code to show how many 10p, 5p and 2p coins
Write each prediction of what the program will output.
You can also predict variable values e.g. a = 10
This code has been sabotaged with some common mistakes. Can you find and fix them all?
Click on the button to add 5 more errors to the code
You get more points for each python skill you use from the keywords section
Click on "tests" to see a description of which python skills to aim for and keep track of which ones you've already used