What will following code print?
a = va = 3 b = va = 3 print (a, b)
Answer
This Python code prints:
3 3