CBSE Class 11 Informatics Practices Question 65 of 102

Python Programming Fundamentals — Question 26

Back to all questions
26
Question

Question 21

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.