What will be the output of the following code : 1 a = 1 2 a, b = a+1, a+1 3 print a 4 print b
What will be the output of the following code :
1 a = 1
2 a, b = a+1, a+1
3 print a
4 print b
4 views