色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

python 求個稅

江奕云2年前9瀏覽0評論

Python是一種高級編程語言,常常用于數據處理、機器學習等領域。在計算個人所得稅時,Python也是一個非常實用的工具。下面我們來看看如何使用Python計算個人所得稅。

#首先,我們定義一個函數,輸入稅前工資,計算稅后工資及個人所得稅
def calculate_tax(income):
if income<=3500:
tax_income=income
rate=0
elif income>3500 and income<=5000:
tax_income=income-3500
rate=0.03
elif income>5000 and income<=8000:
tax_income=income-3500
rate=0.1
elif income>8000 and income<=12500:
tax_income=income-3500
rate=0.2
elif income>12500 and income<=38500:
tax_income=income-3500
rate=0.25
elif income>38500 and income<=58500:
tax_income=income-3500
rate=0.3
elif income>58500 and income<=83500:
tax_income=income-3500
rate=0.35
else:
tax_income=income-3500
rate=0.45
tax=tax_income*rate
after_tax=income-tax
return after_tax,tax

上述代碼中,我們使用了if-elif語句,判斷個人所得稅的稅率。根據國家稅務總局發布的《個人所得稅法實施條例》的規定,稅前工資每月3500元以下不征稅,3500元至5000元的部分稅率為3%,5000元至8000元的部分稅率為10%,8000元至12500元的部分稅率為20%,12500元至38500元的部分稅率為25%,38500元至58500元的部分稅率為30%,58500元至83500元的部分稅率為35%,83500元以上的部分稅率為45%。

#接下來,我們通過調用上述函數,計算稅后工資及個人所得稅
income=8000 #稅前工資
after_tax,tax=calculate_tax(income)
print("稅前工資為:",income,"元")
print("稅后工資為:",after_tax,"元")
print("個人所得稅為:",tax,"元")

運行上述代碼,輸出結果如下:

稅前工資為: 8000 元
稅后工資為: 7320.0 元
個人所得稅為: 680.0 元

通過Python的函數和if-elif語句,我們可以輕松計算個人所得稅并得出稅后工資。而這只是Python在實際應用中的一個小例子,我們可以通過Python實現更多實用的功能。