gpt4 book ai didi

php - Python 等价于 $this->$varName

转载 作者:可可西里 更新时间:2023-10-31 23:52:54 25 4
gpt4 key购买 nike

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

$myVar = 'name';

print $myClass->$myVar;
// Identical to $myClass->name

我想用 Python 来做,但不知道怎么做

最佳答案

在 python 中,它是 getattr 内置函数。

class Something( object ):
def __init__( self ):
self.a= 2
self.b= 3

x= Something()
getattr( x, 'a' )
getattr( x, 'b' )

关于php - Python 等价于 $this->$varName,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/524831/

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