python make global function code example
Example 1: global in python
a = 'this is a global variable'
def yourFunction(arg):
#you need to declare a global variable, otherwise an error
global a
return a.split(' ')
Example 2: python global
c = 0 # global variable
def add():
global c
c = c + 2 # increment by 2
print("Inside add():", c)
add()
print("In main:", c)