Python学习笔记---案例研究

文法计数器

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

使用伪代码中自然分组的方法,我们可以创建四个函数。这一步将帮助我们创建一个模块,该模块可以作为一个完整程序或程序的一部分重用。

(省略)

注:尽量减少重复查找全部数据的次数

      尽量把程序的显示部分和运行部分分开

      在图形用户界面中,使用框架来组合组件。

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值