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