declare global function in python code example
Example 1: python global variables
global var1
var1 = 'whatever'
Example 2: how to make variable global in python
global variable
variable = 'whatever'
Example 3: global in python
x = 5
def foo():
global x = 10
print("local x:", x)
foo()
print("global x:", x)