mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 05:21:09 +00:00
c787a22d93
Solution to the Problem 16 has been added.
16 lines
245 B
Python
16 lines
245 B
Python
power = int(input("Enter the power of 2: "))
|
|
num = 2**power
|
|
|
|
string_num = str(num)
|
|
|
|
list_num = list(string_num)
|
|
|
|
sum_of_num = 0
|
|
|
|
print("2 ^",power,"=",num)
|
|
|
|
for i in list_num:
|
|
sum_of_num += int(i)
|
|
|
|
print("Sum of the digits are:",sum_of_num)
|