第六讲 可交付的随机加密版本一:版本二:字母表位置偏移法版本三:ASCII码的偏移置换版本四:升级版的表到表加密 版本一: alphabet_src = 'abcdefghijklmnopqrstuvwxyz' alphabet_tar = 'defghijklmnopqrstuvwxyzabc' def convert_char(single_char:str,operation:str)->str: '''对单字符进行加密 输入参数: single_char:要加密的单字 operation:加密还是解密,encrypt->加密,decrypt->解密