w3resource

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


12. Sum of Digits of Power

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

For more Practice: Solve these Related Problems:

  • Write a Python program that calculates the sum of all digits of a number obtained by raising a base to a specified power.
  • Write a Python function that computes base**power, converts it to a string, and returns the sum of its digits.
  • Write a Python script to compare the digit sum of different powers of a given base and print the results.
  • Write a Python program to prompt for a base and an exponent, compute the power, and output the sum of the digits in the result.

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.