Python 创建父类
创建父类
任何类都可以是父类,因此语法与创建任何其他类相同:
实例
创建一个名为 Person
的类,其中包含 firstname
和 lastname
属性和 printname
方法:
class Person:
def __init__(self, fname, lname):
self.firstname = fname
self.lastname = lname
def printname(self):
print(self.firstname,
self.lastname)
#Use the Person class to create an object, and then
execute the printname method:
x = Person("John", "Doe")
x.printname()
亲自试一试 »