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.
我尝试使用以下命令打开一个文件进行写入:
fh = open("testfile", "w")
但是,我得到一个例外:
IOError:[Errno 17] 文件存在!
我有写权限并且没有竞争条件。有谁知道我为什么会收到错误消息?
谢谢。
该wx模式是Python 3.3中的新内容,如果文件已存在,则记录为引发错误。如果w+模式正常工作,在我看来,问题中发布的代码与返回的错误并不真正一致......
wx
w+