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