python setting up variables as global code example
Example 1: python global variables
global var1
var1 = 'whatever'
Example 2: how to declare global variable in python
global n
n = 'whatever'
Example 3: global variables python
global x
x=1
global var1
var1 = 'whatever'
global n
n = 'whatever'
global x
x=1