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
    

      

  • 相关阅读:
    MySQL 中文显示乱码
    sprintf
    持续集成
    两个数据库中的数据同步问题(转)
    指针和引用的区别
    #define,const,typedef三者联系与区别
    [转载]selenium webdriver学习(八)
    PHPUnit学习安装
    CI是什么?
    图形界面的操作(转)
  • 原文地址:https://www.cnblogs.com/lincappu/p/8143922.html
Copyright © 2011-2022 走看看