文件操作
摘要:
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 17:13 Sylvia^^ 阅读(127) 评论(0) 推荐(0) 编辑