a=10.
def call();
global a
a=15
b=20
print(a)
call()
Answers
Answered by
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