摘要: fr = open('qcj.txt',mode='r',encoding='utf-8') qcj = fr.read() print('明文:'+qcj) print('密文:',end='') fw = open('cipherText.txt',mode='a',encoding='utf-8') for c in qcj: print(chr(ord(c)+3),end='... 阅读全文
posted @ 2018-05-28 16:37 邱楚峻 阅读(104) 评论(0) 推荐(0) 编辑