CBSE Class 11 Informatics Practices
Question 95 of 102
Python Programming Fundamentals — Question 4
Back to all questionsFalse
Reason — In Python, assignment statements follow the syntax variable = value, where the variable (L-value) is on the left side and the value (R-value) is on the right side of the equal sign. Therefore, 3+C = A is an invalid statement in Python because the left side (3+C) is not a valid variable name.