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
1
Answer:
def funl():
a = 5
b = a + 3
print(b)
c = funl()
print(c)
Output:
8
Similar questions
India Languages,
2 months ago
English,
2 months ago
World Languages,
6 months ago
Math,
10 months ago