摘要:
异常处理 1.异常处理 # 异常处理 """ 程序错误分为两种: 1.语法错误 : 代码没有按照python规定的语法去写,处理不了,重写 2.异常错误 : 在代码语法正确的基础上,程序报错就是异常错误 try...except.. 把所有可能错误的代码放到try代码中 如果报错,运行except代 阅读全文
摘要:
魔术属性 # 魔术属性 class Father(): pass class Mother(): pass class Son(Father,Mother): """ 好儿子,继承优秀基因 """ def name(self,func): res = func.__name__ print(res, 阅读全文
摘要:
魔术方法第二部分 1. __str__魔术方法 # 1.__str__魔术方法 """ 触发时机 : 使用print(对象)打印对象或者str(对象)强转对象时触发 功能 : 查看对象 参数 : 一个self就收当前对象 返回值 : 必须返回字符串类型 """ class Cat(): gift = 阅读全文