In this function, what will be returned?
def calculateTax(subtotal):
tax = subtotal * .0825
return tax
(1 point)
Responses
def
def
calculateTax
calculateTax
subtotal
subtotal
tax
1 answer
The function will return the value of the tax.