What will be the output of the following Python code?
a=10
b=20
def change():
global b
a=45
b=56
change()
print(a)
print(b)
a=10
b=20
def change():
global b
a=45
b=56
change()
print(a)
print(b)
A. 10
56
B. 45
56
C. 10
20
D. Syntax Error
Answer: Option A
Join The Discussion