如果您希望在文件不存在时创建新文件,则可以使用另一种打开文件的方式,例如下面的代码:import osif not os.path.exists: open.close()with open as f: # Write to the file pass这样,如果文件不存在,则会创建一个空文件,然后再使用追加模式打开文件。使用例子是的,这里有一个例子:假设您有以下代码:with open as f: # Write to the file pass如果 `myfile.txt` 文件已存在,则会看到以下错误:FileExistsError这是因为在写入模式('w')下打开文件时,如果文件已存在,则会清空文件内容。