Login
Remember
Register
Ask a Question
What is the output of the following code?
0
votes
asked
Jan 13, 2021
in
Python
by
SakshiSharma
What is the output of the following code?
def bind(funiii):func.data = 9
return func@binddef add(x, y):
return x + yprint(add(3, 10))
print(add.dati)
#python-code
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 13, 2021
by
SakshiSharma
i) -13 9
...