Q. What is the output of the following program
Code:
def myfunc(a): a = a + 2 a = a * 2 return a print myfunc(2)
β
Correct Answer: (C)
Indentation Error
def myfunc(a): a = a + 2 a = a * 2 return a print myfunc(2)
You must be Logged in to update hint/solution