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


Python sympy.Pow()用法及代码示例


借助于sympy.Pow()方法,我们可以找到b的幂的提升,其中a和b是该方法的参数。

用法: Pow(a, b)
参数:
a - It denotes an integer.
b - It denotes an integer.

返回值:返回一个整数,该整数等于b的幂i。例如a^b。


范例1:

# import Pow() method from sympy 
from sympy import Pow
  
a = 3
b = 3
  
# Use Pow() method  
pow_a_b = Pow(a, b)  
      
print("{}^{} = {}".format(a, b, pow_a_b))

输出:

3^3 = 27

范例2:

# import Pow() method from sympy 
from sympy import Pow
  
a = 5
b = 4
  
# Use Pow() method  
pow_a_b = Pow(a, b)  
      
print("{}^{} = {}".format(a, b, pow_a_b))

输出:

5^4 = 625


相关用法


注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 Python | sympy.Pow() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。