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