class Example(object): def the_example(self): itsProblem = "problem" theExample = Example() print(theExample.itsProblem) Jak uzyskać dostęp do zmiennej klasy? Próbowałem dodać tę definicję: def return_itsProblem(self): return itsProblem Ale to też zawodzi.