标签: python file methods
我试图用两种不同的方法只写一个文件。
无论如何我可以在不创建其他保存方法的情况下完成吗?
答案 0 :(得分:0)
def method1(f): f.write("something") def method2(f): f.write("something else") with open("myfile", "w") as f: method1(f) method2(f)