您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

parent_class.py 124B

123456
  1. class ParentClass:
  2. def __init__(self, name):
  3. self.name = name
  4. def get_name(self):
  5. return self.name