InterviewSolution
Saved Bookmarks
| 1. |
How many times will Python execute the code inside the following while loop? You should answer the question without using the interpreter! Justify your answers.i = 0while i < 0 and i > 2 :print “Hello ...”i = i+1 |
|
Answer» 0 times will Python execute the code inside the following while loop. |
|