如何指示文件名以从 IDLE 中读取它?

How to make direction to filename to read it from IDLE?

如果我的笔记本电脑中有这个方向的文件名:

F:\python\python filenames

其中名为 test.txt 而如果我的节目方向是:

C:\Users\Msi\AppData\Local\Programs\Python\Python36

其中名为 fib.py


如何在不将文件名复制到我的程序旁边的情况下读取或更改文件名 fib.py?我必须在我的程序文件中写下我的文件名的方向??我怎样才能对上面的例子做到这一点? 我试过这个:filename='F:\python\python filenames\test.txt' 在我的程序中 但它没有用!错误:

OSError: [Errno 22] Invalid argument: 'F:\python\python filenames\test.txt'

总之我找到了解决方案:

filename='F:\python\python filenames\test.txt'

有效!