InterviewSolution
Saved Bookmarks
| 1. |
What gets printed with given code ?f = Nonefor i in range (5):with open(“data.txt”, “w”) as f:if i > 2:breakprint f.closed |
|
Answer» Gets printed with the code True. |
|