Exponentials in python: x**y vs math.pow(x, y)
Which one is more efficient using math.pow or the ** operator? When should I use one over the other?
Which one is more efficient using math.pow or the ** operator? When should I use one over the other?