在本教程中,我们将借助示例了解 Python setattr() 函数。
setattr()
函数设置对象的属性值。
示例
class Student:
marks = 88
name = 'Sheeran'
person = Student()
# set value of name to Adam
setattr(person, 'name', 'Adam')
print(person.name)
# set value of marks to 78
setattr(person, 'marks', 78)
print(person.marks)
# Output: Adam
# 78
setattr() 语法
用法:
setattr(object, name, value)
如果要获取对象的属性,请使用 getattr() 。
参数:
setattr()
函数采用三个参数:
- object- 必须设置其属性的对象
- name- 属性名称
- value- 赋予属性的值
返回:
setattr()
方法返回 None
。
示例 1:setattr() 如何在 Python 中工作?
class Person:
name = 'Adam'
p = Person()
print('Before modification:', p.name)
# setting name to 'John'
setattr(p, 'name', 'John')
print('After modification:', p.name)
输出
Before modification: Adam After modification: John
示例 2:当在 setattr() 中找不到该属性时
如果未找到该属性,setattr()
创建一个新属性并为其赋值。但是,这只有在对象实现__dict__()
方法时才有可能。
您可以使用dir() 函数检查对象的所有属性。
class Person:
name = 'Adam'
p = Person()
# setting attribute name to John
setattr(p, 'name', 'John')
print('Name is:', p.name)
# setting an attribute not present in Person
setattr(p, 'age', 23)
print('Age is:', p.age)
输出
Name is: John Age is: 23
相关用法
- Python setattr()用法及代码示例
- Python dict setdefault()用法及代码示例
- Python calendar setfirstweekday()用法及代码示例
- Python set clear()用法及代码示例
- Python OpenCV setWindowTitle()用法及代码示例
- Python set()用法及代码示例
- Python set copy()用法及代码示例
- Python set add()用法及代码示例
- Python set symmetric_difference_update()用法及代码示例
- Python OpenCV setTrackbarPos()用法及代码示例
- Python seaborn.swarmplot()用法及代码示例
- Python seaborn.residplot()用法及代码示例
- Python seaborn.regplot()用法及代码示例
- Python Pandas series.cummax()用法及代码示例
- Python seaborn.boxenplot()用法及代码示例
- Python seaborn.PairGrid()用法及代码示例
- Python Pandas series.cumprod()用法及代码示例
- Python seaborn.pairplot()用法及代码示例
- Python seaborn.factorplot()用法及代码示例
- Python seaborn.FacetGrid()用法及代码示例
注:本文由纯净天空筛选整理自 Python setattr()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。