Power of numbers
Implement a function called
var_pow
that would take any number of arguments and a keyword argument called power
The function should raise all the numbers to that power and return the sum of the resulting numbers.Here are some example calls to the function:
def var_pow():
...
print(var_pow(2, 3, 4, power=0) # 3
print(var_pow(2, power=3) # 8
print(var_pow(1, 7, 2, power=2) # 54
Constraints
Time limit: 2 seconds
Memory limit: 512 MB
Output limit: 1 MB