我试图在终端的python控制台上运行open()命令而不是运行脚本。例如,我会输入以下内容将文件分配给变量'txt':
>>> txt = open(C:\\user\\documents\\python\\ex15_sample.txt)
这是输出:
File "<stdin>", line 1
txt = open(C:\\user\\documents\\python\\ex15_sample.txt)
^
SyntaxError: invalid syntax
如何修改此命令以在列出的路径中成功打开文件?
答案 0 :(得分:3)
引用标记。
txt = open("C:\\user\\documents\\python\\ex15_sample.txt")