Les variables de classe Python rendent 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