[心得] 雅虎奇摩線上翻譯文字介面版

看板Python作者 (哇哇哇○( ̄﹏ ̄)○)時間19年前 (2005/12/30 02:00), 編輯推噓0(000)
留言0則, 0人參與, 最新討論串1/2 (看更多)
練習的程式,請各位多指教: --------------------------------------------------------------------------- #!/usr/bin/python # -*- coding: utf-8 -*- import sys import re import urllib2 #讀取第一個參數 word = sys.argv[1] #讀入網頁資料 content = urllib2.urlopen('http://tw.dictionary.yahoo.com/search?ei=UTF-8&p='+word).read() #將翻譯一筆筆秀出 for i in re.compile('<div class=pexplain>(.+?)</div>').findall(content): print i ----------------------------------------------------------------------------- BTW,有人知道re module中的finditer怎麼使用嘛?試了半天試不太出來呢 -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 163.16.1.95
文章代碼(AID): #13j2GbMW (Python)
文章代碼(AID): #13j2GbMW (Python)