PHP前端开发

python如何调用类方法

百变鹏仔 2小时前 #Python
文章标签 方法

python中的类用来描述具有相同的属性和方法的对象的集合。它定义了该集合中每个对象所共有的属性和方法。对象是类的实例。

要想调用类中的方法,首先要定义一个类,python中定义类使用class关键字

class Person():    def __init__(self,name,age):#__init__()方法为类的构造方法        self.name = name         self.age = age    def detail(self):(通过self调用被封装的内容)        print(self.name)        print(self.age)obj1 = Person('santos',18)obj1.detail() #python将obj1传给self参数

python调用类中的方法有两种方式:通过对象直接调用和通过self间接调用。