运行 ❯
获取你自己的
Python
服务器
×
改变朝向
改变主题,深色/浅色
前往 Spaces
class Person: name = "John" age = 36 country = "Norway" setattr(Person, 'age', 40) # The age property will now have the value: 40 x = getattr(Person, 'age') print(x)
40