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)
相关用法
- Python dict()用法及代码示例
- Python dictionary values()用法及代码示例
- Python dir()用法及代码示例
- Python Wand distort()用法及代码示例
- Python datetime astimezone()用法及代码示例
- Python datetime timetuple()用法及代码示例
- Python datetime timetz()用法及代码示例
- Python datetime isocalendar()用法及代码示例
- Python date toordinal()用法及代码示例
- Python date replace()用法及代码示例
- Python date strftime()用法及代码示例
- Python datetime date()用法及代码示例
- Python datetime isoformat()用法及代码示例
- Python Tkinter destroy()用法及代码示例
- Python datetime __str__()用法及代码示例
- Python delattr() and del()用法及代码示例
- Python date weekday()用法及代码示例
- Python date isoweekday()用法及代码示例
- Python datetime.timedelta()用法及代码示例
- Python date isocalendar()用法及代码示例
注:本文由纯净天空筛选整理自 divmod() function with example in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。