def my_pow(base, exponent=0): return base ** exponent print(my_pow(3)) print(my_pow(3, 2))