摘要: fw = open('plainText.txt',mode='w',encoding='utf-8') for c in plainText: print(chr(ord(c)+3),end='') fw.write(chr(ord(c)+3)) name1 = 'Peter' name2 = 'Kate' people = ['Peter','Kate','Lisa',... 阅读全文
posted @ 2018-05-28 16:24 李玮健 阅读(115) 评论(0) 推荐(0) 编辑