题解 | #修改属性2#

修改属性2

https://www.nowcoder.com/practice/7831806be5684ad6ac0f8b43e3e3558e

定义接收数据的变量

name = input()
salary = int(input())
age = int(input())

定义Employee类

class Employee:

    def __init__(self, name, salary):
        self.name = name
        self.salary = salary

    def printclass(self):
        print("%s'salary is %s, and his age is %s" % (self.name, self.salary, self.age))

实例化Employee类并进行属性判断

e = Employee(name, salary)
if hasattr(e, 'age'):
    e.printclass()
else:
    print("False")
    setattr(e, 'age', age)
    e.printclass()
全部评论
你这个 print("False")真秀。。。 print(hasattr(e, 'age')) 可以检测有没有实例属性,并且返回True或者False
3 回复 分享
发布于 2023-10-04 11:36 广东

相关推荐

自由水:笑死了,敢这么面试不敢让别人说
点赞 评论 收藏
分享
评论
17
1
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务