- 已关闭。**此问题为not reproducible or was caused by typos。当前不接受答案。
这个问题是由打字错误或无法再重现的问题引起的。虽然类似的问题在这里可能是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。我怎样才能得到购买的州税总额?
1条答案
按热度按时间edqdpe6u1#
请尝试以下代码,它可以解决代码中的一些问题:
1.您使用的是
(0.06)
,因此它是set
而不是int
。1.未定义
Amount
1.您使用的是
{amount}
,除非您需要精确到某些位数,否则这没有意义。请改用amount
。1.也不需要
float
。