日韩久久久精品,亚洲精品久久久久久久久久久,亚洲欧美一区二区三区国产精品 ,一区二区福利

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

系統 1677 0

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數字處理函數淺析,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對腳本之家網站的支持!


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 富蕴县| 万安县| 德清县| 枣庄市| 慈利县| 綦江县| 喀喇沁旗| 客服| 大庆市| 手游| 昌宁县| 南江县| 张家港市| 林甸县| 乃东县| 渝中区| 武川县| 曲松县| 南投县| 沙坪坝区| 玉溪市| 庐江县| 福建省| 安丘市| 砀山县| 沙洋县| 乐至县| 若羌县| 鸡泽县| 微山县| 安达市| 巨鹿县| 富川| 隆林| 壤塘县| 舞阳县| 德兴市| 衡水市| 台北县| 缙云县| 澄城县|