Python string to attribute(Python字符串属性)
问题描述
我怎样才能完成这样的工作:
How can I achieve such job:
def get_foo(someobject, foostring):
return someobject.foostring
IE:
如果我这样做 get_foo(obj, "name") 它应该调用 obj.name (将输入视为字符串,但我将其称为 attritube.
if I do get_foo(obj, "name") it should be calling obj.name (see input as string but I call it as an attritube.
谢谢
推荐答案
使用内置函数 getattr.
Use the builtin function getattr.
getattr(object, name[, default])
返回object的命名属性的值.name 必须是字符串.如果字符串是对象属性之一的名称,则结果是该属性的值.例如,getattr(x, 'foobar') 等价于 x.foobar.如果命名属性不存在,则返回default,否则返回AttributeError 被引发.
Return the value of the named attribute of object. name must be a string. If the string is the name of one of the object’s attributes, the result is the value of that attribute. For example, getattr(x, 'foobar') is equivalent to x.foobar. If the named attribute does not exist, default is returned if provided, otherwise AttributeError is raised.
这篇关于Python字符串属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Python字符串属性
基础教程推荐
- 求两个直方图的卷积 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- 包装空间模型 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
