本文实例讲述了Python计算一个文件里字数的方法。分享给大家供大家参考。具体如下:
这段程序从所给文件中找出字数来。
from string import *
def countWords(s):
words=split(s)
return len(words)
#returns the number of words
filename=open("welcome.txt",'r')
#open an file in reading mode
total_words=0
for line in filename:
total_words=total_words + countWords(line)
#counts the total words
print total_words
希望本文所述对大家的Python程序设计有所帮助。
Python判断Abundant Number的方法
本文实例讲述了Python判断AbundantNumber的方法。分享给大家供大家参考。具体如下:AbundantNumber,中文译成:盈数(又称丰数,过剩数abundantnumber)是一种特
Python实现简单HTML表格解析的方法
本文实例讲述了Python实现简单HTML表格解析的方法。分享给大家供大家参考。具体分析如下:这里依赖libxml2dom,确保首先安装!导入到你的脚步并调用par
Python本地与全局命名空间用法实例
本文实例讲述了Python本地与全局命名空间用法。分享给大家供大家参考。具体如下:x=1deffun(a):b=3x=4defsub(c):d=bglobalxx=7print("NestedFunctionn=================")print