摘要: 1.open使用open打开文件后一定要记得调用文件对象的close()方法。比如可以用try/finally语句来确保最后能关闭文件。file_object = open('thefile.txt')try: all_the_text = file_object.read( )finally: f... 阅读全文
posted @ 2015-05-07 10:25 Kevin112 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 转自:http://www.gocalf.com/blog/python-read-write-excel.html#xlrd-xlwt 虽然天天跟数据打交道,也频繁地使用Excel进行一些简单的数据处理和展示,但长期以来总是小心地避免用Python直接读写Excel文件。通常我都是把数据保存为以... 阅读全文
posted @ 2015-05-05 19:11 Kevin112 阅读(3340) 评论(0) 推荐(0) 编辑
摘要: 转自:http://www.open-open.com/lib/view/open1331042361015.html一、关于AndroidManifest.xmlAndroidManifest.xml 是每个android程序中必须的文件。它位于整个项目的根目录,描述了package中暴露的组件(activities, services, 等等),他们各自的实现类,各种能被处理的数据和启动位置。 除了能声明程序中的Activities, ContentProviders, Services, 和Intent Receivers,还能指定permissions和instrumentation( 阅读全文
posted @ 2012-03-09 10:12 Kevin112 阅读(238) 评论(0) 推荐(0) 编辑