w3resource

Python Math: Calculate the sum of all digits of the base to the specified power

Python Math: Exercise-12 with Solution

Write a Python program to calculate the sum of all digits of the base to the specified power.

Sample Solution:

Python Code:

def power_base_sum(base, power):
    return sum([int(i) for i in str(pow(base, power))])


print(power_base_sum(2, 100))
print(power_base_sum(8, 10))

Sample Output:

115                                                                                                           
37 

Flowchart:

Flowchart: Calculate sum of all digits of the base to the specified power

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to calculate the difference between the squared sum of first n natural numbers and the sum of squared first n natural numbers.(default value of number=2).
Next: Write a Python program to find out, if the given number is abundant.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.