我在python中的购买州总税代码有什么问题?[已关闭]

bfnvny8b  于 2023-02-02  发布在  Python
关注(0)|答案(1)|浏览(101)

这个问题是由打字错误或无法再重现的问题引起的。虽然类似的问题在这里可能是on-topic,但这个问题的解决方式不太可能帮助未来的读者。
5小时前关门了。
Improve this question

# Set the state and county tax rate constants
state_tax = (0.06)
print(state_tax)

county_tax = (0.012)
print(county_tax)

# Calculate the state and county taxes on the purchase
state_tax = float({amount}*state_tax)

州税是6%,购买金额是999。我怎样才能得到购买的州税总额?

edqdpe6u

edqdpe6u1#

请尝试以下代码,它可以解决代码中的一些问题:
1.您使用的是(0.06),因此它是set而不是int
1.未定义Amount
1.您使用的是{amount},除非您需要精确到某些位数,否则这没有意义。请改用amount
1.也不需要float

# Set the state and county tax rate constants
state_tax = 0.06
print(state_tax)
    
county_tax = 0.012
print(county_tax)

# Calculate the state and county taxes on the purchase
amount = 999
total_state_tax_on_amount = amount * state_tax
print(total_state_tax_on_amount)

相关问题