手机
当前位置:查字典教程网 >脚本专栏 >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判断文本中消息重复次数的方法】相关文章:

pytyon 带有重复的全排列

python 不关闭控制台的实现方法

python实现问号表达式(?)的方法

Python中的魔法方法深入理解

python去掉字符串中重复字符的方法

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

Python获取当前时间的方法

Python的函数嵌套的使用方法

Python实现扫描指定目录下的子目录及文件的方法

python调用shell的方法

精品推荐
分类导航