def compute_power(base, exponent): return base ** exponent # Compute 3 to the power of 4 result = compute_power(3, 4)