第13448题 判断
判断给定Python类继承代码的输出结果是否为5
class A():
    def __init__(self):
        self.value = 10
class B(A):
    def __init__(self):
        super().__init__()
        self.value += 5
b = B()
print(b.value)
A

正确

B

错误