Comment accéder aux variables à partir d'une classe de Python
class Example(object):
def __init__(self):
self.itsProblem = "problem"
theExample = Example()
print(theExample.itsProblem)
Splendid Scarab