f=open("new.txt","w")
print(f.closed)
f.write("hello")
f.close()
print f.closed
with open("new1.txt","w")as g:#上下文管理器 with as
print(g.closed)
g.write("hello,world!")
print (g.closed)
白白净净叫大星_03418722
qq_JK_13
白白净净叫大星_03418722
随时随地看视频慕课网APP
相关分类