Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumPythonclassmethod vs staticmethodSingle-choice MCQ1 views

On Python 3.13, what does accessing `N.x` evaluate to here?

class N: @classmethod @property def x(cls): return cls.__name__ print(N.x)