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)
qq_JK_13
白白净净叫大星_03418722
相关分类