Python Examples
Run
import math x = -1 y = 3.235 result = math.pow(x, y) print('pow(x, y) :', result)
Output