python class set variable to external variable 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