如何使用用户输入的内容更改对象的属性?

How can I change an attribute of an object using something the user has entered?

我知道使用 print(object, attribute_choice)) 来打印属性,但是否有类似的可能性来更改它? attribute_choice 由用户输入。

使用setattr(obj, "myattr", "new_value").