Computer Science
The statement: x + 1 = x is a valid statement.
Python Data Handling
2 Likes
Answer
False
Reason — In Python, literal values and expressions cannot be on the left-hand side (LHS) of an assignment statement. The left-hand side of an assignment statement must be a variable. Therefore, the statement "x + 1 = x" is invalid.
Answered By
1 Like