编译(但不运行)Python 脚本

发布于 2024-10-09 10:31:16 字数 47 浏览 2 评论 0原文

我想检查脚本是否有语法错误。在 2.x 和 3.x 中,如何编译脚本而不运行它?

I want to check a script for syntax errors. In both 2.x and 3.x, how can I compile the script without running it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

送你一个梦 2024-10-16 10:31:16
python -m py_compile script.py
python -m py_compile script.py
古镇旧梦 2024-10-16 10:31:16

py_compile — 编译 Python 源文件

import py_compile
py_compile.compile('my_script.py')

py_compile — Compile Python source files

import py_compile
py_compile.compile('my_script.py')
靑春怀旧 2024-10-16 10:31:16

您可以使用 pylint 来查找语法错误以及更细微的错误,例如访问某些中未定义的变量很少使用的条件分支。

You can use pylint to find syntax errors as well as more subtle errors, such as accessing undefined variables in some rarely-used conditional branch.

潜移默化 2024-10-16 10:31:16

一种方法是执行类似的操作(对于 test.py):

python -c "__import__('compiler').parse(open('test.py').read())"

这适用于 Python 2.x。

One way is to do something like this (for test.py):

python -c "__import__('compiler').parse(open('test.py').read())"

This works for Python 2.x.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文