jason0401 发表于 2017-4-25 10:31:51

Python Challenge笔记

http://www.pythonchallenge.com/pc/def/0.html
第0关给了一张图片 上面的电脑画面中有一个算数题 2的38次方
提示说试着改变URL地址 把2的38次方计算出来填入URL得到下一关的地址
http://www.pythonchallenge.com/pc/def/274877906944.html

>>> print pow(2,38)
274877906944
页: [1]
查看完整版本: Python Challenge笔记