首页 > 编程语言 > 详细

Euler Project question 16 in python way

时间:2014-10-21 23:04:02      阅读:333      评论:0      收藏:0      [点我收藏+]

# This Python file uses the following encoding: utf-8
# 215 = 32768 and the sum of its digits is 3 + 2 + 7 + 6 + 8 = 26.

# What is the sum of the digits of the number 21000?
import time
start = time.time()
print "2**1000‘s sum of digits is %s and cost %s seconds" % (sum([int(i) for i in str(2**1000)]), time.time() - start)

Euler Project question 16 in python way

原文:http://www.cnblogs.com/cyberpaz/p/4041726.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!