declaring global variables in python class code example
Example 1: python class variables make blobal
x = 10
class myClass1():
global x # This takes the variable x outside this class
Example 2: python global variables
global var1
var1 = 'whatever'
Example 3: how to declare global variable in python
global n
n = 'whatever'