2021年10月30日

凯撒的加密和解密

摘要: str1 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' str2 = str1.lower() a = input() for i in a : if i in str2: b = str2.find(i) c = (b + 3) % 26 print(str2[c],end='') 阅读全文

posted @ 2021-10-30 17:01 碍你 阅读(266) 评论(0) 推荐(0)

导航