Saved Bookmarks
| 1. |
Predict the output of the following code snippet:ptr=50def result():global ptrptr=ptr+1print ptr result()print ptr |
|
Answer» The output is 51 51 |
|