cleaner way to reference global variable in python code example
Example 1: how to make variable global in python
global variable
variable = 'whatever'
Example 2: how to declare global variable in python
global n
n = 'whatever'
global variable
variable = 'whatever'
global n
n = 'whatever'