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