像PHP可以这样:
$a = 'var';
class test
{
public $var = 'value';
}
$obj = new test();
echo $obj->{$a};
// output: value
python 怎么玩?
a = 'var'
class test:
var = 'value'
T = test()
t ??? a : value
像PHP可以这样:
$a = 'var';
class test
{
public $var = 'value';
}
$obj = new test();
echo $obj->{$a};
// output: value
python 怎么玩?
a = 'var'
class test:
var = 'value'
T = test()
t ??? a : value