+ 1
Can anyone explain the meaning of pow?
2 ответов
+ 5
pow() is an in-built python function to calculate power of a number. It takes two parameters, first, the number whoes power to be raised and another, how much powe to be raised. Simple help(pow) in the interpreter will give you detail.
+ 5
pow(a,b[,c])
Returns a**b. With c parameter,
Returns a**b%c