Wechall-Crypto
Training: Crypto - Caesar I提示是凯撒密码,写了个凯撒密码加解密的Python程序,代码如下:123456789101112131415161718192021222324252627282930def encode(): message = input("输入明文:") n = int(input("输入密钥数字:")) translated = '' for i in message: if i == ' ': translated += ' ' else: tr...