pow()

Learn how to use the pow() function to calculate the base raised to the power of the exponent.

Returns a result of raising to power

Syntax

pow(base, exponent )

Parameters

NameTypeRequiredDescription
baseint, real, or long✔️The base value.
exponentint, real, or long✔️The exponent value.

Returns

Returns base raised to the power exponent: base ^ exponent.

Example

print result=pow(2, 3)

Output

result
8