Python pow() function
Python pow() Function Description The pow() function returns x raised to the power of y. It is equivalent to xy. This function has an optional third parameter, mod. If mod is given, the function returns (xy) % mod. Syntax pow(x,…