摘要: http://blog.csdn.net/adupt/article/details/4435615http://docs.python.org/release/2.5.2/lib/bltin-file-objects.htmlhttp://blog.csdn.net/firlc/article/details/69568041.open使用open打开文件后一定要记得调用文件对象的close()方法。比如可以用try/finally语句来确保最后能关闭文件。file_object=open('thefile.txt')try: all_the_text=file_object 阅读全文
posted @ 2013-12-03 15:38 vivianC 阅读(228) 评论(0) 推荐(0) 编辑