国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

python 中的divmod數字處理函數淺析

2020-02-16 10:24:35
字體:
來源:轉載
供稿:網友

divmod(a,b)函數

中文說明:

divmod(a,b)方法返回的是a//b(除法取整)以及a對b的余數

返回結果類型為tuple

參數:

a,b可以為數字(包括復數)

版本:

在python2.3版本之前不允許處理復數,這個大家要注意一下

英文說明:

Take two (non complex) numbers as arguments and return a pair of numbers consisting of their quotient and remainder when using long division. With mixed operand types, the rules for binary arithmetic operators apply. For plain and long integers, the result is the same as (a // b, a % b). For floating point numbers the result is (q, a % b), where q is usually math.floor(a / b) but may be 1 less than that. In any case q * b + a % b is very close to a, if a % b is non-zero it has the same sign as b, and 0 <= abs(a % b) < abs(b).

Changed in version 2.3: Using divmod() with complex numbers is deprecated.

python代碼實例:

>>> divmod(9,2)(4, 1)>>> divmod(11,3)(3, 2)>>> divmod(1+2j,1+0.5j)((1+0j), 1.5j)

PS:Python標準庫:內置函數divmod(a, b)

本函數是實現a除以b,然后返回商與余數的元組。如果兩個參數a,b都是整數,那么會采用整數除法,結果相當于(a//b, a % b)。如果a或b是浮點數,相當于(math.floor(a/b), a%b)。

例子:

#divmod() print('divmod(2, 4):', divmod(2, 4)) print('divmod(28, 4):', divmod(28, 4)) print('divmod(27, 4):', divmod(27, 4)) print('divmod(25.6, 4):', divmod(25.6, 4)) print('divmod(2, 0.3):', divmod(2, 0.3)) 

輸出結果如下:

divmod(2, 4): (0, 2)divmod(28, 4): (7, 0)divmod(27, 4): (6, 3)divmod(25.6, 4): (6.0, 1.6000000000000014)divmod(2, 0.3): (6.0, 0.20000000000000007)

總結

以上所述是小編給大家介紹python divmod數字處理函數淺析,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對武林站長站網站的支持!

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 凤凰县| 青川县| 竹溪县| 五华县| 翁牛特旗| 山西省| 安多县| 辰溪县| 西华县| 阳江市| 黎平县| 青河县| 霍州市| 德令哈市| 时尚| 方正县| 宾阳县| 繁峙县| 宜章县| 当涂县| 朝阳区| 旺苍县| 温泉县| 洛阳市| 无极县| 辽中县| 东明县| 隆子县| 平乡县| 青冈县| 吉安县| 南澳县| 嵊州市| 灌南县| 吉林市| 云南省| 岗巴县| 乃东县| 剑阁县| 阿图什市| 都昌县|