# -*- coding:utf-8 -*- class Solution: def Power(self, base, exponent): # write code here return base**exponent