Python運算: 無條件進位//四捨五入/無條件捨去

使用math資料庫

import math

商數

c = a / b

餘數

d = a % b

平方  用 ** 或是 math.power()  == java的^

5平方 
5 ** 2 =  25

math.pow(5,2)

5開根號
5**(0.5)

math.pow(5, 0.5)

無條件進位

math.ceil(number) 

math.ceil(number, 小數後幾位) 

*不特別寫就是預設0


無條件捨去

math.floor(number )

math.floor(number , 小數後幾位)

*不特別寫就是預設0


 四捨五入

round(number )

round(number , 小數後幾位)

*不特別寫就是預設0


人生美好~別浪費腦容量記程式碼 :- ) 

作者:CYL
出處:http://dotblogs.com.tw/cylcode
資料來源都會特別註明,有興趣都可查詢原出處,本站皆經過整理才分享,如有轉載請顯示出處及作者,感謝。