You are on page 1of 1

ANSWERS 1 – GETTING STARTED

print("The Blade Itself")


1. print("Joe Abercrombie")

input("Press enter to exit.")

colour1 = input("Enter your favourite colour: ")

2. colour2 = input("Enter your second favourite colour: ")

print("What a coincidence! My favourite colour is ", colour1 + colour2)

firstName = input("What is your name? ")

3. surname = input("What is your surname? ")

print("Hello", firstName, surname)

basePrice = float(input("What was the starting price? "))


4. totalPrice = (basePrice + basePrice * 0.20)

print("Price plus VAT = ", totalPrice)

You might also like