手机
当前位置:查字典教程网 >脚本专栏 >python >Python判断文本中消息重复次数的方法
Python判断文本中消息重复次数的方法
摘要:本文实例讲述了Python判断文本中消息重复次数的方法。分享给大家供大家参考,具体如下:#coding:gbk'''Createdon201...

本文实例讲述了Python判断文本中消息重复次数的方法。分享给大家供大家参考,具体如下:

#coding:gbk ''' Created on 2012-2-3 从文件中读取文本,并判断文本中形如“message0”、“message123”这样的消息有多少条是重复的 @author: Administrator ''' import re if __name__ == '__main__': pattern = u"(message((d)+))" prog = re.compile(pattern) # read text from file f = open("1003.txt","r") text = unicode(f.read()) f.close() result = prog.findall(text) message_map = dict() redupicate_count = 0 for message in result: if message_map.has_key(message[0]) == True: print message[0], "is reduplicate" redupicate_count += 1 else : message_map[message[0]] = 1; print "total reduplicate message is ", redupicate_count

希望本文所述对大家Python程序设计有所帮助。

【Python判断文本中消息重复次数的方法】相关文章:

Python中使用动态变量名的方法

python处理文本文件实现生成指定格式文件的方法

python函数返回多个值的示例方法

python爬取网站数据保存使用的方法

Python中的魔法方法深入理解

Python中删除文件的程序代码

python调用shell的方法

简单文件操作python 修改文件指定行的方法

Python 字符串操作方法大全

python判断windows隐藏文件的方法

精品推荐
分类导航