Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图用两种不同的方法只写一个文件。
无论如何我可以在不创建另一个保存方法的情况下做到这一点吗?
像这样?
def method1(f): f.write("something") def method2(f): f.write("something else") with open("myfile", "w") as f: method1(f) method2(f)