摘要: #1. bigFile = open('big.txt',mode='r',encoding='utf-8') bigText=bigFile.read() bigFile.close() print(bigText) #2. replaceList=[',','.',"'",'\n'] for c in replaceList: bigText=bigText.replace(c,'... 阅读全文
posted @ 2018-06-11 17:50 qwertyuiopasdf 阅读(577) 评论(0) 推荐(0) 编辑