Q. How do you define a private variable in Python?
β
Correct Answer: (D)
Prefix with two underscores
Explanation: Variables prefixed with `__` are considered private in Python.