我正在尝试编写一个程序,该程序创建一个文件(如果尚不存在),然后在其中写入文本。我的代码看起来像
with open(("test_program/files/{}.txt").format("houses"), 'w+') as f:
w = csv.writer(f)
w.writerow([('This is the file with houses')])
但是我得到了错误
FileNotFoundError: [Errno 2] No such file or directory: 'test_program/files/houses.txt'
我正在使用python 3.6