python compile报错

import py_compile
py_compile.compile(r“D:\test1.py”)
报错invalid syntax
我确实是把文件test1放在了D盘里面啊为什么会一直报错

贴一下源代码和报错?

语法错误,你复制出来的代码如下:

import py_compile
py_compile.compile(r“D:\test1.py”)

应该是中文的双引号的问题,可以修改为

import py_compile
py_compile.compiler"D:\test1.py"

不只有中文双引号,还有中文括号,具体修改为

import py_compile
py_compile.compile(r"D:\test1.py")

有用记得采纳哦~

试试和现在py文件放一起看看报错不