Python Examples
Run
import math x = 4 y = 3 result = math.pow(x, y) print('pow(x, y) :', result)
Output