python global syntax code example
Example 1: python global variables
global var1
var1 = 'whatever'
Example 2: 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 3: 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)
Example 4: global in python
x = 5
def foo():
global x = 10
print("local x:", x)
foo()
print("global x:", x)