Python中的數字類型
int
float
fractions.Fraction
decimal.Decimal
數字的捨與入
int(f):捨去小數部分,只保留整數部分,所以只保留整數部分,所以的int-3.8)結果為-3
math.trunc(f):同int(f)
round(f, digits):四捨五入保留digits位元小數。
math.floor(f)
math.ceil(f)
進行判斷
math.isinf()
math.isfinite()
math.isnan()
float.is.isfinat
math.sqrt(144)
144**0.5pow(144,0.5)
進位轉換
oct, hex, bin:表示把一個數字轉為對應的進制的字串表示形式,所以結果都是str而不是數字。
0xfe、0b11111110、0o376和254在Python的內部都是一樣的,表示數字254,這幾種表示方式對Python而言沒有任何差異。而'0xfe'則只是一個字串,如果需要轉為整數需要藉助int函數,int('0xfe',16)。
該模組提供了很多的function,特別有用。
random.random():產生[0,1)之間的隨機數random.randint(min, max):產生[min, max)之間的隨機整數
random.choice(iterable):從可迭代物件中隨機選取一個元素返回。
random.sample(iterable, k):從iterable中隨機選取不重複的k個元素,以陣列的形式進行傳回。
random.randrange(start, stop, step):在[start, stop)中以步長step進行步進,隨機產生一個元素。
random.shuffle(l):對序列進行原地隨機打亂順序,回傳None。一定要注意這是原地起作用的。
decimal
decimal.Decimal(str):用來建立一個Decimal物件。
decimal.getcontext().PRec=n:設定小數點的位數。
fractions
x=fractions.Fraction(1,3)
y=fractions.Fraction(0.25)z=fractions.Fraction(*(3.25.as_integer_ratio()))
以上就是Python的數字類型及其技巧的內容,
以上就是Python的數字類型及其技巧的內容,
以上就是Python的數字類型及其技巧的內容,更多相關文章請關注PHP中文網(www.php.cn)!