Q. How do you declare a variable in Python?
β
Correct Answer: (A)
variable_name = value
Explanation: In Python, you declare a variable by assigning a value to a variable name using the '=' operator.