PythonDefine a class and create an object in PythonCopyclass MyClass: x = 5 p1 = MyClass() print(p1.x)