<thead id="ap44v"><noframes id="ap44v">

  • Python divmod() 函數(shù)

    2019-03-13 10:05 更新

    Python divmod() 函數(shù)

    Python 內(nèi)置函數(shù) Python 內(nèi)置函數(shù)

    python divmod() 函數(shù)把除數(shù)和余數(shù)運(yùn)算結(jié)果結(jié)合起來,返回一個(gè)包含商和余數(shù)的元組(a // b, a % b)。

    在 python 2.3 版本之前不允許處理復(fù)數(shù)。

    函數(shù)語法

    divmod(a, b)

    參數(shù)說明:

    • a: 數(shù)字
    • b: 數(shù)字

    實(shí)例

    >>>divmod(7, 2)
    (3, 1)
    >>> divmod(8, 2)
    (4, 0)
    >>> divmod(1+2j,1+0.5j)
    ((1+0j), 1.5j)

    Python 內(nèi)置函數(shù) Python 內(nèi)置函數(shù)

    以上內(nèi)容是否對您有幫助:
    在線筆記
    App下載
    App下載

    掃描二維碼

    下載編程獅App

    公眾號
    微信公眾號

    編程獅公眾號