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
English,
5 months ago
Math,
5 months ago
History,
11 months ago
History,
11 months ago
Business Studies,
1 year ago