• 2022-06-07
    下面程序的运行结果是( )。class Student:def __init__(self,n="张三"):self.name=ndef show(self):print(self.name)stu=Student("李四")stu.show()
    A: 张三
    B: 李四
    C: 张三 李四
    D: 李四 张三