setattr()函数在Python中做什么?

setattr()方法

setattr()方法设置对象的给定属性的值。

语法

setattr()method的语法是-

setattr(object, name, value)

setattr()方法采用三个参数-

setattr()方法返回无。

示例

class Male:

    name = 'Abel'

x = Male()print('Before modification:', x.name)

# setting name to 'Jason'

setattr(x, 'name', 'Jason')

print('After modification:', x.name)

输出结果

这给出了输出

('Before modification:', 'Abel')

('After modification:', 'Jason')

以上是 setattr()函数在Python中做什么? 的全部内容, 来源链接: utcz.com/z/316919.html

回到顶部