Ruby's Louvre

每天学习一点点算法

导航

2011年6月22日 #

python学习笔记——异常

摘要: Python内建异常体系结构BaseException+-- SystemExit+-- KeyboardInterrupt+-- GeneratorExit+-- Exception+-- StopIteration+-- StandardError| +-- BufferError| +-- ArithmeticError| | +-- FloatingPointError| | +-- OverflowError| | +-- ZeroDivisionError| +-- AssertionError| +-- AttributeError| +-- EnvironmentError| 阅读全文

posted @ 2011-06-22 11:13 司徒正美 阅读(33639) 评论(0) 推荐(1) 编辑

python学习笔记——文件

摘要: os模块属性 属性名 描述 linesep 用于在文件中分隔行的字符串 sep 用于分隔文件路径名的字符串 pathseq 用于分隔文件路径的字符串 curdir 当前工作目录的字符串名称 pardir (当前工作目录的)父目录字符串名称 文件对象方法 属性名 描述 file.close() 关闭文件 file.fileno() 返回文件的描述符 file.flush() 刷新文件的内部换存区 file.isatty() 判定file是否一个类tty设备 file.next() 返回文件的下一行(类似于file.readline()),或在没有其他行时引发StopIteration异常 fi. 阅读全文

posted @ 2011-06-22 09:55 司徒正美 阅读(2138) 评论(0) 推荐(0) 编辑