python基礎2
2.企業發放的獎金根據利潤提成。利潤(I)低於或等於10萬元時,獎金可提10%;利潤高於10萬元,低於20萬元時,低於10萬元的部分按10%提成,高於10萬元的部分,可提成7.5%;20萬到40萬之間時,高於20萬元的部分,可提成5%;40萬到60萬之間時高於40萬元的部分,可提成3%;60萬到100萬之間時,高於60萬元的部分,可提成1.5%,高於100萬元時,超過100萬元的部分按1%提成,從鍵盤輸入當月利潤I,求應發放獎金總數?
i = int(input('淨利潤:'))
arr = [1000000,600000,400000,200000,100000,0]
rat = [0.01,0.015,0.03,0.05,0.075,0.1]
r = 0
for idx in range(0,6):
if i>arr[idx]:
r+=(i-arr[idx])*rat[idx]
print ((i-arr[idx])*rat[idx])
i=arr[idx]
print (r)
i = int(input('淨利潤:'))
arr = [1000000,600000,400000,200000,100000,0]
rat = [0.01,0.015,0.03,0.05,0.075,0.1]
r = 0
for idx in range(0,6):
if i>arr[idx]:
r+=(i-arr[idx])*rat[idx]
print ((i-arr[idx])*rat[idx])
i=arr[idx]
print (r)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/20985606/viewspace-2146999/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Python 基礎 2 - 列表Python
- python基礎學習2Python
- python基礎7 - 函式2Python函式
- Python基礎:第一個Python程式(2)Python
- python基礎學習day2Python
- 面向Python,物件導向(基礎2)Python物件
- Python基礎篇-Python基礎01Python
- 基礎的python知識2 (變數)Python變數
- python基礎語法2---運算子Python
- Gurobi基礎教程(Python版)-系列教程2Python
- Python基礎學:內建型別(2)Python型別
- Python基礎入門_2基礎語法和變數型別Python變數型別
- Python知識體系-Python2基礎知識Python
- Pandas 基礎 (2) - Dataframe 基礎
- Python企業面試題2 —— 基礎篇Python面試題
- Python基礎筆記01-Python基礎Python筆記
- python基礎中的基礎Python
- Python基礎入門(2)- python中的資料型別Python資料型別
- Python基礎Python
- python 基礎Python
- Python 基礎 (-)Python
- 第五課 Python基礎資料型別2Python資料型別
- Python基礎:語法基礎(3)Python
- Python 基礎 2-2 列表的實際應用場景Python
- JavaScript基礎2JavaScript
- css基礎2CSS
- Docker 基礎 - 2Docker
- MySQL基礎(2)MySql
- Sheel基礎2
- jQuery基礎2jQuery
- Python基礎面試題30問!Python基礎教程Python面試題
- [Python3網路爬蟲開發實戰] 2-爬蟲基礎 2-網頁基礎Python爬蟲網頁
- python基礎概念Python
- python基礎操作Python
- python基礎(一)Python
- python基礎(五)Python
- python基礎3Python
- Python列表基礎Python
- 【Python基礎】字典Python