Python:获取对象的“属性/方法/属性”作为方法的参数或作为属性
在 WMI 模块中(是的,我的老板希望我在 Windows 中编程 — 但至少不是在 COBOL 中),似乎您可以通过将 WMI 值的名称作为方法的字符串参数
blabla=wmithingy().getvalue('nameOfValue')
或作为属性/方法:
blabla=wmithingy().nameOfValue()
我是在做梦,吸着不好的杂草,还是可以有效地完成(以及如何)?
In the WMI module (yeah, my boss wants me to program in Windows — but at least it’s not in COBOL), it seems that you can access a WMI value either by passing it’s name as a string parameter of a method,
blabla=wmithingy().getvalue('nameOfValue')
or as a property/method:
blabla=wmithingy().nameOfValue()
Am I dreaming, smoking bad weed, or can it effectively be done (and how)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
getvalue()
方法使用getattr()< /code>
,或
__getattr__()
方法遵循getvalue()
方法。Either the
getvalue()
method usesgetattr()
, or the__getattr__()
method defers to thegetvalue()
method.