gpt4 book ai didi

Python pow() 和模数

转载 作者:行者123 更新时间:2023-12-04 00:12:29 26 4
gpt4 key购买 nike

python3 中的 pow() 函数提供指数的值。

>>>pow(2,3)
8
Python3 支持负指数,即 可以使用 pow(10,-1) 表示。当我计算 pow(4,-1,5) 时,它给出了输出 4。
>>> pow(4, -1, 5)
4
我无法理解值 4 是如何计算的,因为它在后台执行
当我手动计算时,它没有返回值 4 作为提醒。
当 -ve value 以两个值传递时,它以手动方法响应所需的输出。
>>> pow(4, -1)
.25
用模数计算负指数有什么区别?

最佳答案

来自 documentation ;

If mod is present and exp is negative, base must be relatively prime to mod. In that case, pow(inv_base, -exp, mod) is returned, where inv_base is an inverse to base modulo mod.

关于Python pow() 和模数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67908120/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com