```python class Student: count = 0 def __init__(self, name="张三", age=18): self.name = name self.age = age Student.count += 1 def printstu(self): print("姓名:", self.name) print("年龄:", self.age) s2 = Student("tom", 18) print(s2.name) print(s2.age) s2.printstu() # print(Student.name) # print(Student.age) ``` [2024-06-17 12:59:26 | AI写代码神器 | 140点数解答]