# 模块安装 pip install pycipher
from pycipher import Caesar plaintext = Caesar(3).decipher(ciphertext) ciphertext = Caesar(3).encipher(plaintext)
# 测试字母表 python caesar.py letter <string> # 测试ASCII表 python caesar.py ascii <string>