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