Python compile() FunctionThe python compile() function takes source code as input and returns a code object which can later be executed by exec() function. Signaturecompile(source, filename, mode, flag, dont_inherit, optimize) Parameters
ReturnIt returns a Python code object. Let's see some examples of compile() function which are given below: Python compile() Function Example 1This example shows to compile a string source to the code object. Output: <class 'code'> sum = 15 Python compile() Function Example 2This example shows to read a code from the file and compile. Let's say we have mycode.py file with following content. We can read this file content as a string ,compile it to code object and execute it. Output: Multiplication =200 Next TopicPython Built in Functions |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India