CBSE Class 11 Computer Science Question 61 of 98

Python Programming Fundamentals — Question 23

Back to all questions
23
Question

Question 18

What would the following code do?

a = b = 70
Answer

The above code performs multiple assignment, where the value 70 is assigned to both variables a and b simultaneously.