【问题描述】 创建Person类,包含count属性和show方法;创建Person类对象p1,调用p1的show方法完成输出; 【输入形式】 输入变量name; 【输出形式】 输出方法执行结果; 【样例输入】 zhangsan 【样例输出】 0 zhangsan test!!!
时间: 2023-12-02 15:04:53 浏览: 52
创建一个类Person的简单实例
5星 · 资源好评率100%
以下是符合要求的Python代码实现:
```python
class Person:
count = 0
def show(self, name):
print(self.count, name, "test!!!")
p1 = Person()
p1.show("zhangsan")
```
输出结果为:
```
0 zhangsan test!!!
```
阅读全文