aboutsummaryrefslogtreecommitdiff
path: root/python/016-power_digit_sum.py
blob: 584ba674b861457e84c98340a635039ece6bc19a (plain)
1
2
3
4
5
two_power_thousand = 2 ** 1000

list_of_digits = [int(dgt) for dgt in list(str(two_power_thousand))]

print(sum(list_of_digits))