python实现统计word的小程序,pythonword小程序,Python语言: py
文章由Byrx.net分享于2019-03-23 08:03:42
python实现统计word的小程序,pythonword小程序,Python语言: py
Python语言: python实现统计word的小程序# -*- coding:utf-8 -*- import redef mycmp (x,y): if x[1] > y[1]: return 1 elif x[1] < y[1]: return -1 else: if x[0] > y[0]: return -1 elif x[0] ==y[0]: return 0 else: return 1file = open("word.py")text = file.read()wordList = str.split(re.sub(r'\\W|\\d',' ',text))wordList= zip(set(wordList),map(lambda x:wordList.count(x),set(wordList)))wordList.sort(reverse=True,cmp=mycmp)for word in wordList: print word[0],":",word[1]#该片段来自于http://byrx.net
相关内容
- python从sqlite读取数据并显示,pythonsqlite读取,import cgi,
- python中id()函数的实用研究实例,python实例,>>>
- 下载文件,,#! /usr/bin/
- 下载漫画,,其他的下载漫画好办,这个
- python启动软件进程,python启动进程,python启动办公软件
- rot13简单加密,rot13加密,def rot13(s,
- 页面url的可连接性,页面url连接性,import reimp
- Python 冒泡排序,python冒泡排序,num = [23,2,
- Python hashlib模块,pythonhashlib模块,hashlib是个专门提
- Python 动态规划算法,计算单词距离,python算法,#!/usr/bi
评论关闭