I started with Python's classes and I want to do something like that:
class First:
def __init__(self):
self.value = 1
@classmethod
def func(cls):
print(self.value)
second = First()
second.func()
But i can't access self.value
of the class. Can anybody help me?