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