📅  最后修改于: 2022-03-11 14:47:00.058000             🧑  作者: Mango
order_value = '12000'
tax_percentage = 4
tax_amount = (float(order_value)*(tax_percentage / 100))
print("The total tax amount is ", tax_amount)