• 2022-06-07
    定义类的代码如下:class Person():def __init__(self,name):self.name=namedef show(self):print(self.name)
    A: p=Personp.show()
    B: p=Person()p.show('李思')
    C: p=Person('李思')p.show()
    D: p=Person('李思')show()