码迷,mamicode.com
首页 > 其他好文 > 详细

凯撒密码B

时间:2020-03-22 21:18:53      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:int   密码   lse   input   +=   else   凯撒   print   NPU   

s = input()
t = ""
for c in s:
if ‘a‘ <= c <= ‘z‘:
t += chr( ord(‘a‘) + ((ord(c)-ord(‘a‘)) + 3 )%26 )
elif ‘A‘<=c<=‘Z‘:
t += chr( ord(‘A‘) + ((ord(c)-ord(‘A‘)) + 3 )%26 )
else:
t += c
print(t)

凯撒密码B

标签:int   密码   lse   input   +=   else   凯撒   print   NPU   

原文地址:https://www.cnblogs.com/yabaodamowang/p/12548318.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!