下列Python代码中,self参数的作用表示MyClass类的一个实例。 ( )
class MyClass(): def my_method(self, other_arg): print(self, other_arg) obj = MyClass() obj.my_method("Hello")