Skip to main content
Journey Uncommon Logo
JourneyUncommon
hardPythonmetaclasses and __new__Single-choice MCQ

Why does 'init ran' never print here, and what is x?

class C: def __new__(cls): return 42 def __init__(self): print('init ran') x = C() print(x)