2010-11-08 讀取網頁原始碼3 (Python) 37276 0 Python 讀取網頁原始碼3 (Python) 直接用 urllib 來作 import urllibpage=urllib.urlopen("http://www.hinet.net")while 1: line=page.readline() if line: print line else: break 如有錯誤 歡迎指正 回首頁