凯撒密码B

Posted mrlee28

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了凯撒密码B相关的知识,希望对你有一定的参考价值。

def encryption(str, n):
    cipher = []
    for i in range(len(str)):
        if str[i].islower():
            if ord(str[i]) < 123-n: #ord(z)=122
                c = chr(ord(str[i]) + n)
                cipher.append(c)
            else:
                c = chr(ord(str[i]) + n - 26)
                cipher.append(c)
        elif str[i].isupper():
            if ord(str[i]) < 91-n: #ord(Z)=90
                c = chr(ord(str[i]) + n)
                cipher.append(c)
            else:
                c = chr(ord(str[i]) + n - 26)
                cipher.append(c)
        else:
            c = str[i]
            cipher.append(c)
    cipherstr = (‘‘).join(cipher)
    return cipherstr

#获得用户输入的明文
plaintext = input()
ciphertext = encryption(plaintext, 3)
print(ciphertext)

 

以上是关于凯撒密码B的主要内容,如果未能解决你的问题,请参考以下文章

Python凯撒密码和反密码

凯撒密码B

凯撒密码B

凯撒加密算法(最简单的对称加密)

变异凯撒

凯撒密码