Python基于有道实现英汉字典功能
更新时间:2015年07月25日 12:55:42 作者:Sephiroth
这篇文章主要介绍了Python基于有道实现英汉字典功能的方法,通过调用有道查询接口实现英汉字典功能,简单实用,具有一定参考借鉴价值,需要的朋友可以参考下
本文实例讲述了Python基于有道实现英汉字典功能的方法。分享给大家供大家参考。具体如下:
import re,urllib aa="http://dict.youdao.com/search?tab=chn&keyfrom=dict.top&q=" print ("input q! to exit ") while 1: word=raw_input(">>>") if word=="q!": exit() else: word=word.replace(' ','+') url=aa+word s=urllib.urlopen(url).read() comm=re.compile(r'<td class="dttitle2"><font color="#013694"><b>(.*?)<\/b><\/font><\/td>') tem=comm.findall(s) com=re.compile('<td class="attributem1web">(.*?)</td>',re.S|re.M|re.I) result=com.findall(s) if tem: for i in tem: temp=i.decode('utf8').encode('cp936') print (temp) print '\n' else: print ("no such word\n")
希望本文所述对大家的Python程序设计有所帮助。
您可能感兴趣的文章:
相关文章
PyCharm 2020.2下配置Anaconda环境的方法步骤
这篇文章主要介绍了PyCharm 2020.2下配置Anaconda环境的方法步骤,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2020-09-09Python 出现错误TypeError: ‘NoneType’ object is not iterable解决办法
这篇文章主要介绍了Python 出现错误TypeError: ‘NoneType’ object is not iterable解决办法的相关资料,需要的朋友可以参考下2017-01-01Python+Matplotlib绘制带有对角线的散点图的示例代码
Matplotlib 是一个用于绘制二维图形的 Python 库,这篇文章主要介绍了Python如何利用Matplotlib绘制带有对角线的散点图,需要的小伙伴可以参考一下2023-06-06
最新评论