0 votes
in Python by
What is the output of the following program :

def myfunc(a):

    a = a + 2

        a = a * 2

    return a

 

print myfunc(2)

 

8

16

Indentation Error  

Runtime Error

Related questions

0 votes
asked May 16, 2020 in Python by Robindeniel
0 votes
asked Feb 11, 2020 in Python by rahuljain1
...