Answer:
c = 1 # global variable
def add():
c = c + 2 # increment c by 2
print(c)
add()
Step-by-step explanation:
8.6m questions
11.2m answers