作者wawawa (哇哇哇○( ̄﹏ ̄)○)
看板Python
标题[心得] 雅虎奇摩线上翻译文字介面版
时间Fri Dec 30 02:01:11 2005
练习的程式,请各位多指教:
---------------------------------------------------------------------------
#!/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