dianqi206 发表于 2022-6-21 10:45:28

创建Person类及其对象

请问程序如何完善呢
创建Person类及其对象
【问题描述】
创建Person类,包含count属性和show方法;创建Person类对象p1,调用p1的show方法完成
输出;
【输入形式】
输入变量name;
【输出形式】
输出方法执行结果;
【样例输出】

#创建Person类
①#定义Person类头部信息。
count = 0
def show(self, name):
self.name = name
print(self.name,"test!!!")
p1 = Person()
#输入name变量
name=input()
print(p1.count)
#调用show方法完成输出
②#调用p1对象的show()方法完成name变量的输出。

临时号 发表于 2022-6-21 13:51:36

class Person:
    count = 0
    def show(self, name):
      self.name = name
      print(self.name,"test!!!")

p1 = Person()
#输入name变量
name=input()
print(p1.count)
p1.show(name)
页: [1]
查看完整版本: 创建Person类及其对象