What is the output of the following code? › Category: Python › What is the output of the following code? 0 Vote Up Vote Down Editor">Editor Staff asked 2 years ago What is the output of the following code? def bind(func):func.data = 9return func@binddef add(x, y):return x + yprint(add(3, 10))print(add.data) 1 Answers 0 Vote Up Vote Down Editor">Editor Staff answered 2 years ago Answer is a) -13 9