文法计数器
1.计算文件的行数,单词数及字符数
import sys,string
#从命令行或者用户处获取文件名
if len(sys.argv)<2:
name=raw_input("Enter the file name:")
else:
name=sys.argv[1]
inp=open(name,'r')
#初始化计数器值为0,创建变量
words=0
lines=0
chars=0
for line in inp.readlines():
lines=lines+1
#进入单词序列并计算其个数
list=string.split(line)
words=words+len(list)
#计算行中有多少个字符
chars=chars+len(line)
fmtstr="%s has %d lines,%d words and %d characters"
print fmtstr%(name, lines, words, chars)
inp.close()
2.计算句子数目
如果我们仅仅收集了单词和标点符号,就可以通过分析标点符号来计算句子数,从句数等等(由定义可知,根据标点符号可判定句子和从句)。因此,为了收集标点符号,我们需要遍历整个文件,然后遍历整个标点符号---一个更小的列表。
伪代码:
foreach line in file:
increment line count
if line empty:
increment paragraph count
split line into character groups
foreach character group:
increment group count
extract punctuation chars into a dictionary – {char:count}
if no chars left:
delete group
else:increment word count
sentence count=sum of(‘.',’?',’!')
clause count=sum of all punctuation(very poor definition…)
report paras,lines,sentences,clauses,groups,words.
foreach punctuation char:
report count
使用伪代码中自然分组的方法,我们可以创建四个函数。这一步将帮助我们创建一个模块,该模块可以作为一个完整程序或程序的一部分重用。
(省略)
注:尽量减少重复查找全部数据的次数
尽量把程序的显示部分和运行部分分开
在图形用户界面中,使用框架来组合组件。