字符串操作
Posted 赵敏婷
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串操作相关的知识,希望对你有一定的参考价值。
idno =\'440000199804024147\' 地区=idno[0:6] 生日=idno[6:14] 性别=idno[-2] print(地区,生日,性别) if(int(性别) % 2 == 0): print(\'girl\') else: print(\'boy\') for i in range(12): print(9800+i,chr(9800+i)) s=input(\'明文:\') for c in s: print(chr(ord(c)+3),end=\'\') s=input(\'\\n密文:\') for c in s: print(chr(ord(c)-3),end=\'\')
以上是关于字符串操作的主要内容,如果未能解决你的问题,请参考以下文章
VSCode自定义代码片段15——git命令操作一个完整流程