CBSE Class 11 Computer Science
Question 35 of 98
Python Programming Fundamentals — Question 14
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.