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:
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.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://198.211.115.131/python-exercises/math/python-math-exercise-12.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics