CBSE Class 11 Informatics Practices
Question 36 of 102
Python Programming Fundamentals — Question 13
Back to all questionsabc = 20 30 40
Reason — In Python, the statement abc = 20 30 40 is invalid because it attempts to assign multiple values (20, 30, and 40) to a single variable (abc) in a single assignment statement.