想知道在运行期间是否可以改变方法的功能化,例如
x = obj1 + obj2 return x+y
而你想要添加
x = obj1 + obj2 x+= obj3 return x+y
python
python ×1