Python Programming Training Certification
Flexible Hours
100 Assignments
Instructor Led online Training
50 LMS Access
24X7 Support
100% Skill Level
Enquire Now
Course Overview
Python compile() Function
The python compile() function takes source code as input and returns a code object which can later be executed by exec() function.
Signature
compile(source, filename, mode, flag, dont_inherit, optimize)
Parameters
- source – normal string, a byte string, or an AST (Abstract Syntax Trees) object.
- filename – File from which the code is read.
- mode – mode can be either exec or eval or single.
- eval – if the source is a single expression.
- exec – if the source is block of statements.
- single – if the source is single statement.
- flags and dont_inherit – Default Value= 0. Both are optional parameters. It monitors that which future statements affect the compilation of the source.
- optimize (optional) – Default value -1. It defines the optimization level of the compiler.
Return
It returns a Python code object.
Let’s see some examples of compile() function which are given below:
Python compile() Function Example 1
This example shows to compile a string source to the code object.
- # compile string source to code
code_str = ‘x=5\ny=10\nprint(“sum =”,x+y)’
code = compile(code_str, ‘sum.py’, ‘exec’)
print(type(code))
exec(code)
exec(x)
Output:
- <class ‘code’>
sum = 15
Python compile() Function Example 2
This example shows to read a code from the file and compile.
Let’s say we have mycode.py file with following content.
- x = 10
y = 20
print(‘Multiplication = ‘, x * y)
We can read this file content as a string ,compile it to code object and execute it.
- # reading code from a file
f = open(‘my_code.py’, ‘r’)
code_str = f.read()
f.close()
code = compile(code_str, ‘my_code.py’, ‘exec’)
exec(code)
Output:
- Multiplication =200
Candidate’s Journey During Our Training Program
Expert’s Advice & Selection of Module
Choosing the right type of module for the training is half the battle & Our Team of experts will help & guide you.
Get Trained
Get Trained & Learn End to End Implementation from our Expert Trainer who are working on the same domain.
Work on Projects
We Do make our student’s work on multiple case studies , scenario based tasks & projects in order to provide real-time exposure to them.
Placements
We have a dedicated placement cell in order to provide placement assistance & relevant interviews to our candididates till selection
Placement Partner