Python -Klasse -Variablen machen Blobal
x = 10
class myClass1():
global x # This takes the variable x outside this class
Poor Pygmy
x = 10
class myClass1():
global x # This takes the variable x outside this class