pythonchallenge是一个网页解迷游戏
http://www.pythonchallenge.com/pc/def/0.html
level0 , warm up
看hint, 知道2*38 是得到url的关键
于是for循环, range, 代码简单,找个网上看的例子
def mypow1(a,n):
mul=1
for i in range(n):
mul*=a
return mul
没找到python直接求a的n次方的函数, 上面这个在性能上不是最优, http://sllovewsy149.blog.163.com/blog/static/108734178201172172612924/ 这里有过讨论
不过不管了, 我只要过关 274877906944.html