+ 1
What's the ouput of the following: f = None for i in range (5): with open("data.txt", "w") as f: if i > 2:
4 Respuestas
0
f = None
for i in range (5):
with open("data.txt", "w") as f:
if i > 2:
break
print f.closed
0
Enjoy!
0
Ans