2018年6月20日

摘要: bigFile = open('big.txt',mode='r',encoding='utf-8') bigText = bigFile.read() bigFile.close() print(bigText) replaceList=[',','.',"'",'\n'] for c in replaceList: bigText = bigText.replace(c,'') ... 阅读全文
posted @ 2018-06-20 20:39 陆梓曦 阅读(121) 评论(0) 推荐(0)

导航