摘要: 1.open 使用open打开文件后一定要记得调用文件对象的close()方法。比如可以用try/finally语句来确保最后能关闭文件。 ? 1 2 3 4 5 file_object = open('thefile.txt') try: all_the_text = file_object.re 阅读全文
posted @ 2017-02-14 22:31 L.P.B_Blizzard 阅读(268) 评论(0) 推荐(0) 编辑