Computer Science, asked by adarshpatel36, 6 months ago

What will be the output of the
following code? *
def funl () :
a=5
b=a +3
print (b)
c=fun1 0
print (c)​

Answers

Answered by lavanya3602
1

Answer:

def funl():

a = 5

b = a + 3

print(b)

c = funl()

print(c)

Output:

8

Similar questions