文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
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

 

 

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载