python函數之divmod數字處理函數

巴扎黑
發布: 2017-08-17 10:47:29
原創
2109 人瀏覽過

python每日一函數- pmod數字處理函數

pmod(a,b)函數

中文說明:

pmod(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 pision. With mixed operand types, the rules for binary arithmetic operators apply. For plain and longres gers the is / 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 pmod() with complex numbers is deprecated.

python程式碼實例:

>>> pmod(9,2)
(4, 1)
>>> pmod(11,3)
(3, 2)
>>> pmod(1+2j,1+0.5j)
((1+0j), 1.5j)
登入後複製

以上是python函數之divmod數字處理函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!