当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python divmod()用法及代码示例


Python divmod() 函数

divmod() 函数是一个库函数,用于获取给定值(除数和除数)的商和余数,它接受两个参数 1)被除数和 2)除数,并返回一个包含商和余数的元组。

用法:

    divmod(dividend, divisor)

参数:

  • dividend– 一个要被除的数。
  • divisor– 一个要被除的数。

返回值: tuple– 它返回一个包含商和余数的元组。

例:

    Input:
    a = 10  #dividend
    b = 3   #divisor

    # finding quotient and remainder
    result = divmod(a,b)
    print("result = ", result)
    
    Output:
    result =  (3, 1)

用于查找两个数字的商和余数的 Python 代码

# python code to demonstrate example of 
# divmod() number

a = 10  #dividend
b = 3   #divisor

print("return type of divmod() function:", type(divmod(a,b)))

# finding quotient and remainder
result = divmod(a,b)
print("result = ", result)

# float values
a = 10.23  #dividend
b = 3.12   #divisor

# finding quotient and remainder
result = divmod(a,b)
print("result = ", result)

输出

return type of divmod() function: <class 'tuple'>
result =  (3, 1)
result =  (3.0, 0.8700000000000001)


相关用法


注:本文由纯净天空筛选整理自 divmod() function with example in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。