InterviewSolution
Saved Bookmarks
| 1. |
What is the output of the following snippet?i = 1while True:if i % 3 = 0:breakprint(i, end = “)i + = 1(a) 12(b) 123(c) 1234(d) 124 |
|
Answer» Answer is (a) 12 |
|