python 内置函数
Posted ty-test
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 内置函数相关的知识,希望对你有一定的参考价值。
一 . __getattribute__与__getattr__
两个都可以重写方法,
__getattribute__属性存在或者不存在都会执行
__getattr__ 在__getattribute__未定义重写的情况下,在调用未实例的情况下,调用__getattr__
或者定义了异常的情况下,会先执行 __getattribute__ 在执行 __getattr__
以上是关于python 内置函数的主要内容,如果未能解决你的问题,请参考以下文章