gpt4 book ai didi

python - 获取对象属性

转载 作者:IT老高 更新时间:2023-10-28 22:01:33 28 4
gpt4 key购买 nike

简单的问题,但由于我是 python 新手,从 php 过来,我得到了一些错误。
我有以下简单的类:

User(object)
fullName = "John Doe"

user = User()

在 PHP 中,我可以执行以下操作:

$param = 'fullName';
echo $user->$param; // return John Doe

我如何在 python 中做到这一点?

最佳答案

要访问对象的字段或方法,请使用点:

user = User()
print user.fullName

如果要在运行时定义字段名称,请使用内置 getattr 函数:

field_name = "fullName"
print getattr(user, field_name) # prints content of user.fullName

关于python - 获取对象属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6305061/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com