欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

python的稅后工資

林玟書1年前8瀏覽0評論

Python作為一種強大的編程語言,被廣泛應用于各個領域。其中,Python的腳本編程能力,為稅后工資計算帶來了便利。

在計算稅后工資時,我們需要根據工資總額和個人所得稅稅率,計算應繳稅款和稅后工資。

# 計算個人所得稅
def calc_tax(income):
if income<= 36000:
tax = income * 0.03
elif income<= 144000:
tax = income * 0.1 - 2520
elif income<= 300000:
tax = income * 0.2 - 16920
elif income<= 420000:
tax = income * 0.25 - 31920
elif income<= 660000:
tax = income * 0.3 - 52920
elif income<= 960000:
tax = income * 0.35 - 85920
else:
tax = income * 0.45 - 181920
return tax
# 計算稅后工資
def calc_income(salary):
tax = calc_tax(salary)
income = salary - tax
return income

以上代碼中,calc_tax函數根據工資總額計算出應繳稅款,而calc_income則根據應繳稅款計算出稅后工資。

使用以上函數進行計算,可以得出稅前工資為50000元的稅后工資:

salary = 50000
income = calc_income(salary)
print("稅后工資為:", income) # 輸出:稅后工資為: 40680.0

以上就是使用Python計算稅后工資的方法,希望能對大家有所幫助!