Python_每日习题_0002_个税计算

时间:2023-12-26 23:57:13
# 题目 企业发放的奖金根据利润提成。利润(I)低于或等于10万元时,
# 奖金可提10%;利润高于10万元,低于20万元时,低于10万元的部分按10%提成,
# 高于10万元的部分,可提成7.%;20万到40万之间时,高于20万元的部分,可提成5%;
# 40万到60万之间时高于40万元的部分,可提成3%;60万到100万之间时,高于60万元的部分,
# 可提成1.%,高于100万元时,超过100万元的部分按1%提成,从键盘输入当月利润I,求应发放奖金总数? # 程序分析 分区间计算即可。 profit = int(input('Show me the miney'))
bonus =
thresholds = [,,,,] #每次改变提成金额区间的差值
rates = [0.1,0.075,0.05,0.03,0.015,0.01] for i in range(len(thresholds)):
if profit <= thresholds[i]:
bonus += profit*rates[i]
profit=
break
else:
bonus += thresholds[i]*rates[i]
profit -= thresholds[i] bonus += profit*rates[-] #最后算上超过1000000的提成
print(bonus)