摘要:
bigFile = open('one of us.txt','r') bigText = bigFile.read() bigFile.close() print(bigText) replaceList = [',',"'",'?','\n'] for c in replaceList: bigText = bigText.replace(c,' ') print(bigText... 阅读全文
posted @ 2018-06-11 16:57
世界第一稳
阅读(97)
评论(0)
推荐(0)