Python计算一个文件里字数的方法
作者:小卒过河 时间:2022-09-23 10:28:19
本文实例讲述了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,计算
0
投稿
猜你喜欢
PHP信号处理机制的操作代码讲解
2023-07-14 09:26:49
python的re模块使用方法详解
2022-08-10 16:18:20
apache+php+mysql安装配置方法小结
2023-11-11 23:29:31
大前端时代搞定PC/Mac端开发,我有绝招(收藏版)
2023-02-13 08:38:58
vue 请求后台数据的实例代码
2024-05-05 09:23:47
巧妙规划使用Oracle数据空间
2009-03-20 11:51:00
详解Python静态网页爬取获取高清壁纸
2023-10-18 08:27:42
程序猿新手学习必备的Python工具整合
2024-01-02 00:53:26
使用Python的音乐播放器GUI的实现
2022-03-02 05:02:45
Python编写条件分支代码方法
2021-08-16 12:31:17
浅谈MySQL与redis缓存的同步方案
2024-01-13 23:44:58
python的staticmethod与classmethod实现实例代码
2022-10-02 23:56:45
python中str内置函数用法总结
2022-06-23 10:22:45
浅谈anaconda python 版本对应关系
2023-12-06 01:02:35
python通过urllib2爬网页上种子下载示例
2022-04-12 10:51:58
Python入门基本操作列表排序用法详解
2021-01-02 15:42:02
python+requests+pytest接口自动化的实现示例
2022-11-01 06:12:27
详解Python3之数据指纹MD5校验与对比
2023-01-01 03:56:53
兼容IE和FF的收藏本站、设为首页代码
2009-01-07 14:14:00
golang gorm错误处理事务以及日志用法示例
2024-04-25 13:18:50