Computer Science, asked by paulchennai75, 9 months ago

a=10.
def call();
global a
a=15
b=20
print(a)
call()

Answers

Answered by braindecoder100
7

Answer:

15

global 15

Explanation:

call() is a function,

but in the question, function return syntax is wrong.

it should be:

def call():

return 'global' + str(a)

Similar questions