def getCarPrice(initialCost, salesTax):
return initialCost*(1+salesTax)
x = getCarPrice(22000, 0.042)
y = getCarPrice(30000, 0.063)
z = getCarPrice(50000, 0.073)
9.5m questions
12.2m answers