zoukankan      html  css  js  c++  java
  • Python内置函数(2)——divmod

    英文文档:

    divmod(ab)

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

    说明:

      1. 接受两个数值(非复数),返回两个数值的相除得到的商,和余数组成的元组。

      2. 如果参数都是整数,执行的是地板除,相当于 (a//b,a%b)。

      3. 如果参数时浮点数,相当于( math.floor(a/b),a%b)。

    整数:
    
    >>> divmod(5,3)
    (1, 2)
    >>>
    >>> 5//3
    1
    >>> 5%3
    2
    
    
    浮点数:
    >>> divmod(5.5,3)
    (1.0, 2.5)
    >>> 5.5/3
    1.8333333333333333
    >>>
    >>> import math
    >>> math.floor(5.5/3.0)
    1
    >>>
    >>> 5.5%3
    2.5
    

      

  • 相关阅读:
    电脑技巧1
    web前端学习网站汇总1
    11月20日学习日志
    11月16日学习日志
    11月18日学习日志
    11月13日学习日志
    11月12日学习日志
    11月17日学习日志
    11月15日学习日志
    11月11日学习日志
  • 原文地址:https://www.cnblogs.com/lincappu/p/8143922.html
Copyright © 2011-2022 走看看