KnowledgeBoat Logo
|

Informatics Practices

3+C = A is a valid statement.

Python Funda

3 Likes

Answer

False

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.

Answered By

1 Like


Related Questions