Compile (but do not run) a Python script [duplicat

2019-03-07 13:25发布

Possible Duplicate:
How can I check the syntax of Python script without executing it?

How do I compile a Python script without running it? I just want to check the script for syntax errors. I was hoping for a simple command line switch, but I didn't see anything in python --help. I'd like an answer for both Python 2 and Python 3.

4条回答
疯言疯语
2楼-- · 2019-03-07 13:51

py_compile — Compile Python source files

import py_compile
py_compile.compile('my_script.py')
查看更多
萌系小妹纸
3楼-- · 2019-03-07 14:03
python -m py_compile script.py
查看更多
一夜七次
4楼-- · 2019-03-07 14:11

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.

查看更多
唯我独甜
5楼-- · 2019-03-07 14:14

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.

查看更多
登录 后发表回答