Python compile()函数

Python compile() function is used to compile the source into code object or AST module object. The returned code object can be executed using exec() or eval() function based on the provided mode to construct the code object.

Python compile()函数用于将源代码编译为代码对象或AST模块对象。 可以根据提供的模式使用exec()或eval()函数执行返回的代码对象,以构造代码对象。

Python compile() (Python compile())

Python compile() function syntax is:

Python compile()函数语法为:

compile(source, filename, mode, flags=0, dont_inherit=False, optimize=-1)

Let’s look at the compile() function arguments.

让我们看一下compile()函数参数。

  • source: Source to create the code object. This can be string, byte string or AST module object.

    source :创建代码对象的源。

你可能感兴趣的:(python,java,linux,c++,tensorflow)