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