Gxlsystem TIY Editor
Gxlsystem 在线教程
改变方向
暗黑模式
python_inheritance_parent.py:
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("Bill", "Gates") x.printname()