摘要: 案例:###1 ###str = "01213456"if str.find("23"): print "YES!"else: print "NO!"### 2 ###str = "01213456"if str.find("23"): print "YES!"else: print "NO!"上两个案例结果都为“YES!”, 非常令我吃惊,2不应该是NO!吗?经查阅得知其用法:函数原型:find(str, pos_start, pos 阅读全文
posted @ 2013-04-11 23:56 wuxi812 阅读(249) 评论(0) 推荐(0) 编辑
摘要: Python读写文件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')# 阅读全文
posted @ 2013-04-11 13:56 wuxi812 阅读(187) 评论(0) 推荐(0) 编辑