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 几个常用的内置函数的主要内容,如果未能解决你的问题,请参考以下文章

python 几个常用的内置函数

13 个非常有用的 Python 代码片段

Python3 常用的几个内置方法

Python 杂记:内置函数(filtermapsorted等)

Python中的常用内置函数都有哪些呢?

Python最常用的函数基础语句有哪些?