我正在尝试在一个空文件夹中创建一个新的文本文件。该文件夹的路径是:
C:\Users\Tor\Desktop\Python files\retning
当我在 Windows 资源管理器的命令行中键入此内容时,我会直接进入空文件夹。
当我在 Python 中键入代码时,我收到一条错误消息,看起来 Python 已经'\'
用'\\'
这是我的代码
sector='A5'
g=open('C:\Users\Tor\Desktop\Python files\retning\retning'+sector+'.txt', 'a')
这是错误信息
Traceback (most recent call last):
File "C:\Users\Tor\Desktop\Python files\filer som behandler output\Vindretning.py", line 2, in <module>
g=open('C:\Users\Tor\Desktop\Python files\retning\retning'+sector+'.txt', 'a')
IOError: [Errno 22] invalid mode ('a') or filename: 'C:\\Users\\Tor\\Desktop\\Python files\retning\retningA5.txt'
谁能告诉我我做错了什么,或者这里发生了什么?