Computer Science, asked by shyamsinghchouhan513, 6 months ago

What will the following code print? *
a=va=3
b=va=4
print (a, b)​

Answers

Answered by JustABusyBoi
0

Answer:

In python, typing this out in a terminal gives you the following output

3 4

Explanation:

Similar questions