Q. Which of the following is the correct way to define a class in Python?
β
Correct Answer: (C)
class A():
Explanation: Classes in Python are defined using `class ClassName():`.