微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

python加载自定义词典实例

今天小编就为大家分享一篇python加载自定义词典实例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

如下所示:

#加载词典 def load_dict_from_file(filepath): _dict = {} try: with io.open(filepath, 'r',encoding='utf-8') as dict_file: for line in dict_file: (key, value) = line.strip().split(' ') #将原本用空格分开的键和值用冒号分开来,存放在字典中 _dict[key] = value except IOError as ioerr: print("文件 %s 不存在" % (filepath)) return _dict

#加载停用词词典 def stopwordslist(filepath): stopwords = {} fstop = io.open(filepath, 'r',encoding='utf-8') for line in fstop: stopwords[line.strip()]=line.strip() fstop.close() return stopwords

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐