CBSE Class 11 Computer Science Question 115 of 173

Data Handling — Question 4

Back to all questions
4
Question

Question 4a

What will following code print?

a = va = 3  
b = va = 3  
print (a, b)

Answer

This Python code prints:

3 3
Answer