Computer Science

What will following code print?

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

Python

Python Data Handling

27 Likes

Answer

This Python code prints:

3 3

Answered By

14 Likes


Related Questions