Saved Bookmarks
| 1. |
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 |
|
Answer» Print a = 2 Print b =2 |
|