Q. Which of the following is correct for creating an object in Python?
β
Correct Answer: (C)
obj = A()
Explanation: The syntax `obj = A()` is used to create an object of class A in Python.