2012年5月24日

Python open读写文件实现脚本

摘要: 1.open使用open打开文件后一定要记得调用文件对象的close()方法。比如可以用try/finally语句来确保最后能关闭文件。file_object=open('thefile.txt')try:all_the_text=file_object.read( )finally:file_object.close( )注:不能把open语句放在try块里,因为当打开文件出现异常时,文件对象file_object无法执行close()方法。2.读文件读文本文件input=open('data','r')#第二个参数默认为rinput=open 阅读全文

posted @ 2012-05-24 14:03 linzuxin 阅读(449) 评论(0) 推荐(0) 编辑

python容器类型----列表的使用

摘要: python的容器主要包含列表列表,字典1、列表对象的方法包含:insert(i,x)--------在指定位置插入一项。第一自变量是要在哪一个元素前面插入,用下标表示。如:a.insert(0,x)在列表前面插入,a.insert(len(a),x)等价于a.append(x)append(x)---------等价于a.insert(len(a),x)index(x)----------在列表中查找值为x然后返回第一个x的元素的下标,没有找到时出错remove(x)---------在列表中删除第一个值为x的元素,找不到时出错sort()------------对列表元素在原位排序,这个方 阅读全文

posted @ 2012-05-24 13:58 linzuxin 阅读(173) 评论(0) 推荐(0) 编辑

导航