python学习笔记 类与类继承 class Person: def __init__(self,name,age): self.name = name self.age = age def PrintPersonInformation(self): pr 2026-03-13 17 0 计算机 python