python how to make variable global in a class 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