Rumah > Artikel > pembangunan bahagian belakang > python pow函数怎么用
python中的pow函数的功能是计算x的y次幂。本篇文章将带大家一起了解一下,pow()函数在Python中的用法。感兴趣的朋友了解一下。
以下是 math 模块 pow() 方法的语法:
import math math.pow( x, y )
内置的 pow() 方法
pow(x, y[, z])
函数是计算x的y次方,如果z在存在,则再对结果进行取模,其结果等效于pow(x,y) %z
注意:pow() 通过内置的方法直接调用,内置方法会把参数作为整型,而 math 模块则会把参数转换为 float。
参数:x -- 数值表达式。y -- 数值表达式。z -- 数值表达式。
返回值:返回 xy(x的y次方) 的值。
以下展示了使用 pow() 方法的实例:
一、在命令行中的使用
1、pow(x,y):这个是表示x的y次幂。
>>> pow(2,4) 16 >>>
2、pow(x,y,z):这个是表示x的y次幂后除以z的余数
>>> pow(2,4,5) 1 >>>
二、在IDE中的使用
#!/usr/bin/python # -*- coding: UTF-8 -*- import math # 导入 math 模块 print "math.pow(100, 2) : ", math.pow(100, 2) # 使用内置,查看输出结果区别 print "pow(100, 2) : ", pow(100, 2) print "math.pow(100, -2) : ", math.pow(100, -2) print "math.pow(2, 4) : ", math.pow(2, 4) print "math.pow(3, 0) : ", math.pow(3, 0)
Atas ialah kandungan terperinci python pow函数怎么用. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!