摘要: geFile = open("ge.txt",mode="r",encoding='utf-8') geText = geFile.read() geFile.close() print(geText) replaceList = [',','.',"'",'\n'] for c in replaceList: geText = geText.replace(c,' ') print(... 阅读全文
posted @ 2018-06-20 20:49 陈奕帆 阅读(102) 评论(0) 推荐(0) 编辑