• 2022-06-07
    下面程序运行的结果是( )。class Person:def __init__(self,n="张三"): self.name=nclass Student(Person):def __init__(self,s="male"):self.sex=sdef show(self):print(self.name,self.sex)s=Student("female")s.show()
    A: 张三 male
    B: 张三 female
    C: 出错
    D: 张三