Python实现统计英文单词个数及字符串分割代码
字符串分割
代码如下:
str="a|and|hello|||ab" alist = str.split('|') print alist
结果
代码如下:
str="a hello{这里换成5个空格}world{这里换成3个空格}" alist=str.split(' ') print alist
统计英文单词的个数的python代码
代码如下:
# -*- coding: utf-8 -*- import os,sys info = os.getcwd() #获取当前文件名称 fin = open(u'c:/a.txt') info = fin.read() alist = info.split(' ') # 将文章按照空格划分开 fout = open(u'c:/count.txt', 'w') fout.write('\n'.join(alist)) # 可以通过文本文件的行号同样看到效果 ##fout.write('%s' % alist) fout.close() allen = len(alist) # 总的单词数 nulen = alist.count('') # 空格的数量 print "words' number is",allen print "null number is",nulen print "poor words number is", allen-nulen # 实际的单词数目 fin.close()
相关推荐
YENCSDN 2020-11-17
lsjweiyi 2020-11-17
houmenghu 2020-11-17
Erick 2020-11-17
HeyShHeyou 2020-11-17
以梦为马不负韶华 2020-10-20
lhtzbj 2020-11-17
夜斗不是神 2020-11-17
pythonjw 2020-11-17
dingwun 2020-11-16
lhxxhl 2020-11-16
坚持是一种品质 2020-11-16
染血白衣 2020-11-16
huavhuahua 2020-11-20
meylovezn 2020-11-20
逍遥友 2020-11-20
weiiron 2020-11-16