| 这个作业属于那个课程 | https://edu.cnblogs.com/campus/zjlg/rjjc/homework/13295 |
| 这个作业的目标 | 实现一个命令行文本计数统计程序,能正确统计导入的txt文本中的字符数,单词数等数据 |
| 姓名学号 | 蔡添昀2022329301103 |
说明:本程序是基于Python所写,通过PyInstaller并将Python脚本打包成exe可执行文件打包成可使用的程序,完整代码见https://gitee.com/jelly-burger/wc_exe
介绍
①基本功能:实现一个命令行文本计数统计程序。能正确统计导入的纯英文txt文本中的字符数,单词数,句子数。
②拓展功能:统计空行、注释行等,并提供相应命令接口。
使用说明
1.右击开始 图标,在搜索栏中输入cmd
2.在命令行根目录切换至目标目录,本作者使用 cd C:\Users\cty123\dist找到程序根目录
基本功能命令模式:
text_counter.exe -<指令>
基础指令:
text_counter.exe -c
text_counter.exe -w
text_counter.exe -s
拓展功能:
text_counter.exe -e
text_counter.exe -C
结果展示
v0.2使用文本:
Words are the building blocks of communication, allowing us to express our thoughts, feelings, and ideas. They have the power to inspire, educate, and connect people from all walks of life. In this essay, we will explore the impact and significance of a mere 100 words in various contexts.
v0.3使用文本:
v0.1:空项目
v0.2:基础功能
异常处理:
v0.3:由于其他功能一致所以仅拓展功能
感悟
虽然是一次小的编程作业,但是过程中收获了许多,第一次学会将py文件转成exe,并且在cmd中成功调用他们让人感到激动,过程困难重重,但查询了csdn询问了朋友最后得到了较好的结果。