Pow() |
Previous Next |
Pow(<Base>, <Exponent>)
|
Part
|
Description
|
<Base>
|
Required. The number or variable to raise to the power of
<Exponent>.
|
<Exponent>
|
Required. The number to raise the <Base> by.
|
a = 3
b = Pow(3, a)
Print b
|