首页
社区
课程
招聘
[推荐]个人所得计算器(好玩的)
发表于: 2018-11-16 22:35 2901

[推荐]个人所得计算器(好玩的)

2018-11-16 22:35
2901

2018年第四季度个税咋计算

"""
输入月收入和五险一金计算个人所得税(20181001之前版)

Version: 0.1
Author: 骆昊
Date: 2018-02-28
"""
salary = float(input('本月收入: '))
insurance = float(input('五险一金: '))
diff = salary - insurance - 3500
if diff <= 0:
    rate = 0
    deduction = 0
elif diff < 1500:
    rate = 0.03
    deduction = 0
elif diff < 4500:
    rate = 0.1
    deduction = 105
elif diff < 9000:
    rate = 0.2
    deduction = 555
elif diff < 35000:
    rate = 0.25
    deduction = 1005
elif diff < 55000:
    rate = 0.3
    deduction = 2755
elif diff < 80000:
    rate = 0.35
    deduction = 5505
else:
    rate = 0.45
    deduction = 13505
tax = abs(diff * rate - deduction)
print('原个人所得税: ¥%.2f元' % tax)
print('原实际到手收入: ¥%.2f元' % (diff + 3500 - tax))

[注意]传递专业知识、拓宽行业人脉——看雪讲师团队等你加入!

收藏
免费 1
支持
分享
最新回复 (0)
游客
登录 | 注册 方可回帖
返回
//