python 几个常用的内置函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 几个常用的内置函数相关的知识,希望对你有一定的参考价值。
__init__
__new__
__repr__
__str__
这几个函数的优先级分别是
new,str,repr,init
看下面的例子:
class A: def __str__(self): return "this is str" def __init__(self,value="hello world !"): self.value = value def __new__(self): return "this is new" def __repr__(self): return "this is repr" a=A() print(a)
由上面的例子可以看出他们的出场顺序
以上是关于python 几个常用的内置函数的主要内容,如果未能解决你的问题,请参考以下文章