A programmer is writing a system to manage sales calculations. Study the following algorithm:
tax_rate = 0.20
def calculate_tax(subtotal):
tax_amount = subtotal * tax_rate
return tax_amount
Identify the name of a local variable used in this code.