• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            清風竹林

            ぷ雪飄絳梅映殘紅
               ぷ花舞霜飛映蒼松
                 ----- Do more,suffer less

            Python Challenge lv4: follow the chain

              題目鏈接: http://www.pythonchallenge.com/pc/def/linkedlist.php
               
              說實話,好不容易通過google搞清楚題目的要求: 通過不斷的從服務器取得一個web page,然后從源碼中找出下一個鏈接的地址。需要注意的是:雖然頁面的源碼很簡單,但并不是其中所有的數字都是有效的,需要使用正則表達式找出正確的pattern形式才可以,對本題而言r'nothing is (\d+)'是一個可用的pattern,使用''.join([x for x in text if x.isdigit()] 將所有的數字都粘連起來了,結果跟蹤到4000多還沒結束,才知道上當了。。。
             
            import re
            import urllib.request


            if __name__ == '__main__':
                url 
            = 'http://www.pythonchallenge.com/pc/def/linkedlist.php?nothing='
                index 
            = '17675'
                counter 
            = 1
                pattern 
            = re.compile(r'nothing is (\d+)')
                
            while True:
                    
            try:
                        request
            = urllib.request.Request(url+index)
                        
            # my pc must use proxy to connect
                        request.set_proxy('172.16.0.252:80''http')
                        response
            = urllib.request.urlopen(request) 
                        content
            =str(response.read().decode())
                        response.close()    
                        
            print(counter, content)
                        
                        result 
            = pattern.search(content)
                        
            if not result:
                            
            break
                        
                        index 
            = result.group(1)
                        counter 
            += 1        
                    
            except Exception as ex:
                        
            print(ex)
                        
            break
              程序輸出:
            1 and the next nothing is 8511
            2 and the next nothing is 89456
            3 and the next nothing is 43502
            4 and the next nothing is 45605
            5 and the next nothing is 12970
            6 and the next nothing is 91060
            7 and the next nothing is 27719
            8 and the next nothing is 65667
            9 peak.html

            得到下一個題目的地址peak.html (注:我的index初始值是17675,題目中最早給出的可不是這個值, 我是從地址列表的后一部分選了一個數字而已,因此不要擔心)

            posted on 2009-05-11 16:05 李現民 閱讀(577) 評論(2)  編輯 收藏 引用 所屬分類: python

            評論

            # re: Python Challenge lv4: follow the chain[未登錄] 2011-05-31 20:17 simon

            有個問題想問:
            你是如何知道要用nothing去做pattern的呢?  回復  更多評論   

            # re: Python Challenge lv4: follow the chain 2011-06-01 10:04 李現民

            @simon
            你去看一個網頁的源代碼,里面有一個鏈接, 你點一下會出現 and the next nothing is 92512, 替換Url里linkedlist.php?nothing=12345中的12345,然后再回車, 你就會發現規律了  回復  更多評論   

            综合久久精品色| 久久精品国产半推半就| 精品人妻伦九区久久AAA片69| 精品久久久久久国产免费了| 亚洲国产成人久久一区WWW| 亚洲色大成网站WWW久久九九| 99久久国产综合精品网成人影院| 日韩美女18网站久久精品| 国内精品久久久久影院优| 久久露脸国产精品| 九九久久99综合一区二区| 国产精品久久久香蕉| 久久99精品久久久久久秒播| 亚洲精品无码久久久久去q | 欧美大香线蕉线伊人久久| 精品人妻伦九区久久AAA片69| 久久精品国产亚洲AV高清热| 亚洲国产成人精品91久久久 | 欧美一区二区久久精品| 成人国内精品久久久久影院VR| 久久这里只有精品首页| 日韩久久久久中文字幕人妻| 久久精品这里热有精品| av无码久久久久不卡免费网站| 超级碰碰碰碰97久久久久| 久久性生大片免费观看性| 久久国产精品成人免费 | 久久伊人精品青青草原高清| 久久中文骚妇内射| 色综合久久综合中文综合网| 最新久久免费视频| 亚洲AⅤ优女AV综合久久久| 午夜精品久久影院蜜桃| 亚洲国产成人久久笫一页| 国产精品免费久久久久久久久| 国产AV影片久久久久久| 久久99精品九九九久久婷婷| 久久久91人妻无码精品蜜桃HD| 国产一久久香蕉国产线看观看| 久久99精品国产一区二区三区| 久久成人国产精品二三区|