I want to call back a function which is the method of a class . def callback(self.do,x): return(self.do(x))
That is what i want to write,when i input def callback(self.do,x): error message: File "<stdin>", line 1 def callback(self.do,x): ^ SyntaxError: invalid syntax `do` is a method in my class ,how to write the code?
-- https://mail.python.org/mailman/listinfo/python-list