Ad
Code
Diff
  • def power(num, p):
        
        return num **p
    • def power(num, p):
    • return pow(num, p)
    • return num **p