所得税
サラリーマンの場合
年末調整かあるいは確定申告で差分が解消される(年1調整)
目安
https://gyazo.com/27a78d95f0aeae16c8a75e1495c0e8f3 https://youtu.be/1kXQxLkWYgM?si=QjLBqR0lIB1cZf3J&t=195
住民税は10%
code:py
# 実効税率
def calculate_progressive_tax(income):
tax = 0
lower_limit = 0
tax_brackets = [
(1950000, 0.15),
(3300000, 0.20),
(6950000, 0.30),
(9000000, 0.33),
(18000000, 0.43),
(40000000, 0.5),
(99999999999999, 0.55) # 〜無限(100兆円)
]
for upper_limit, rate in tax_brackets:
if income > upper_limit:
tax += (upper_limit - lower_limit) * rate
else:
tax += (income - lower_limit) * rate
break
lower_limit = upper_limit
return tax
額面給与が500万円後半から所得が330万円を越え始める
https://gyazo.com/31cac043c8c72c6cf6c5759582c5dd5b
計算方法
課税所得から計算
参考:住民税は前年の所得をもとに計算されるので計算間違いがない(よって年末調整はない) --.icon
古い資料
https://gyazo.com/9e4f92b8ecea5f822865d78619160d8e
これは古い。今はもっと税率が高い