我正在尝试在完成所有操作的类中创建一个函数。
例如,__init__
函数始终在初始化过程中运行;
但我想要另一个在实例末尾运行的对象。
我应该如何创建或调用这样的函数?
class SomeClass:
def __init__(self):
#Some code to be runned at the beginning
def function_for_finalization(self):
#Some code to be runned at the end of an instance