InterviewSolution
Saved Bookmarks
| 1. |
What is the output of the following snippet?T = 1 while T: print(True) break(a) False(b) True(c) 0(d) No output |
|
Answer» (d) No output |
|