您现在的位置是:课程教程文章

Python魔术方法的三个特点

2023-12-14 22:02课程教程文章 人已围观

1、特点

(1)定义在class中

(2)不需要直接调用

(3)Python的某些函数或操作符会调用对应的特殊方法

2、实例

class Person(object):
    def __init__(self, name, gender):
        self.name = name
        self.gender = gender
 
    def __str__(self):
        return 'person: %s, %s' % (self.name, self.gender)
 
p = Person('zhangsan', 'male')
 
print(p)
#输出 person: zhangsan, male

以上就是Python魔术方法的三个特点,希望对大家有所帮助。更多Python学习推荐:python教学

本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

课程教程:Python魔术方法的三个特点

上一篇:Python中装饰属性的方法

下一篇:没有了

站点信息

  • 文章统计篇文章