how to assign a global variable in python init function code example
Example: python class variables make blobal
x = 10
class myClass1():
global x # This takes the variable x outside this class
x = 10
class myClass1():
global x # This takes the variable x outside this class