python中ASCII码字符与int之间的转换⽅法
ASCII码转换为int:ord('A') 65
int转为ASCII码:chr(65) 'A'
题⽬内容:
实现⼀个凯撒密码的变种算法,对输⼊字符串进⾏加解密处理
把字母a-z分别循环对应为相距13个位置的字母n-m,即
原⽂字母:a b c d e f g h i j k l m n o p q r s t u v w x y z
对应字母:n o p q r s t u v w x y z a b c d e f g h i j k l m
⼤写字母对应⽅式与⼩写字母类似,其他符号(含标点符号)不作处理
输⼊格式:
⼀个英⽂字符串
输出格式:
经过上述算法加密的字符串
输⼊样例:
The Zen of Python
输出样例:
Gur Mra bs Clguba
时间限制:2000ms内存限制:128000kb
题解:string类型⽆法被修改,若修改需要先转为列表类型,最后再连接起来
str=input()
strlist=list(str)
for i in range(len(strlist)):python新建项目教程
if strlist[i]>='a' and strlist[i]<='z':
if ord(strlist[i])+13<=122:
strlist[i]=chr(ord(strlist[i])+13)
else:
strlist[i]=chr((ord(strlist[i])+13)%122+96)
elif strlist[i]>='A' and strlist[i]<='Z':
if ord(strlist[i])+13<=90:
strlist[i]=chr(ord(strlist[i])+13)
else:
strlist[i]=chr((ord(strlist[i])+13)%90+64)
print("".join(strlist))
以上这篇python中ASCII码字符与int之间的转换⽅法就是⼩编分享给⼤家的全部内容了,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。