Skip to main content
Journey Uncommon Logo
JourneyUncommon
hardPythondata model dunder dispatchSingle-choice MCQ4 views

What does this code print?

class A:\n v = "x"\na = A()\na.v = "y"\nprint(a.v)