字符串操作、文件操作,英文词频统计预处理
作业来源:https://edu.cnblogs.com/campus/gzcc/GZCC-16SE1/homework/2684
1.字符串操作:
- 解析身份证号:生日、性别、出生地等。
- 凯撒密码编码与解码
- 网址观察与批量生成
代码实现
①解析身份证号
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | def main( id ): province = id [ 0 : 2 ] city = id [ 2 : 4 ] county = id [ 4 : 6 ] year = id [ 6 : 10 ] month = id [ 10 : 12 ] day = id [ 13 : 14 ] SN = id [ - 4 : - 1 ] if int ( id [ - 2 ]) % 2 ! = 2 : sex = '男' else : sex = '女' check = id [ - 1 ] print ( "地址为:{}省,{}市,{}县,生日为:{}年{}月{}日,顺序号为{},性别为{},校验码为{}" . format (province,city,county,year,month,day,SN,sex,check)) id = input ( "请输入身份证号码:" ) main( id ) |
②凯撒密码编码与解码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | def encoding(code): print ( "加密前:{}" . format (code)) print ( "加密后:" ,end = "") for x in range ( len (code)): print ( chr ( ord (code[x]) + 5 ), end = '') def decoding(code): print ( "解密前:{}" . format (code)) print ( "解密后:" ,end = "") for x in range ( len (code)): print ( chr ( ord (code[x]) - 5 ), end = '') code = input ( "请输入要加密的编码:" ) way = int ( input ( "请输入要运行的方法(1为加密,2为解密)" )) if (way = = 1 ): encoding(code) if (way = = 2 ): decoding(code) |
③网址观察与批量生成
1 2 3 4 5 6 | def WebpageGeneration(url): for i in range ( 10 ): print (url + "{}.html" . format (i + 1 )) url = "https://i.cnblogs.com/EditPosts.aspx?opt=1" WebpageGeneration(url) |
效果截图
2.英文词频统计预处理
- 下载一首英文的歌词或文章或小说。
- 将所有大写转换为小写
- 将所有其他做分隔符(,.?!)替换为空格
- 分隔出一个一个的单词
- 并统计单词出现的次数。
代码实现
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | text = '''Happy Birthday to you Happy Birthday to you Happy Birthday to you Happy Birthday to you ''' Punctuation = "',.?!()" for i in Punctuation: song = text.replace(i, ' ' ) word_frequency = {} song = text.lower() song = text.split() for i in song: if i not in word_frequency: word_frequency[i] = 1 else : word_frequency[i] + = |
3.文件操作
- 同一目录、绝对路径、相对路径
- 凯撒密码:从文件读入密函,进行加密或解密,保存到文件。
- 词频统计:下载一首英文的歌词或文章或小说,保存为utf8文件。从文件读入文本进行处理。
课上练习前面的操作,后面两个的都没了解。等明白了再补回来。
4.函数定义
- 加密函数
- 解密函数
- 读文本函数
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
· 现代计算机视觉入门之:什么是图片特征编码
· .NET 9 new features-C#13新的锁类型和语义
· 手把手教你在本地部署DeepSeek R1,搭建web-ui ,建议收藏!
· Spring AI + Ollama 实现 deepseek-r1 的API服务和调用
· 《HelloGitHub》第 106 期
· 数据库服务器 SQL Server 版本升级公告
· C#/.NET/.NET Core技术前沿周刊 | 第 23 期(2025年1.20-1.26)