Q. What is the correct syntax to create a class in Python?
β
Correct Answer: (C)
class MyClass:
Explanation: The correct syntax is `class ClassName:` in Python.