The function should ask the user for the price of the delivery and if the price is less than £10 then it should print a statement saying "the total price including the delivery charge is" + £1.50 or it should just output the normal price if it is more than or equal to £10 as the delivery would be free.
order=input("Please enter the price of the order: ")
x=1.50
if order <10:
print"the total price including the delivery charge is", order + x
else:
print"The toal price including delivery charges is", order