文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>Python Challenge 4

Python Challenge 4

时间:2010-08-12  来源:Ray Z

http://www.pythonchallenge.com/pc/def/linkedlist.php

code  1 >>> import re, urllib, string
 2 >>> url = 'http://www.pythonchallenge.com/pc/def/linkedlist.php?nothing='
 3 >>> nothing = '12345'
 4 >>> while(True):
 5     data = urllib.urlopen(url + nothing).read()
 6     print data
 7     r = re.compile('\d+')
 8     match = r.findall(data)
 9     if len(match) == 1:
10         nothing = str(match[0])
11     elif len(match) == 2:
12         nothing = str(match[1])
13     elif data.find('Yes') != -1:
14         nothing = str(string.atoi(nothing) / 2)
15     else:
16         break
17 # peak.html

 

 

相关阅读 更多 +
排行榜 更多 +
找茬脑洞的世界安卓版

找茬脑洞的世界安卓版

休闲益智 下载
滑板英雄跑酷2手游

滑板英雄跑酷2手游

休闲益智 下载
披萨对对看下载

披萨对对看下载

休闲益智 下载