compile() generates a code object : Compile : Buildin Function PYTHON TUTORIALS


PYTHON TUTORIALS » Buildin Function » Compile »

 

compile() generates a code object


# The last argument is a string indicating the code object type. 

# There are three possible values:
'eval':  Evaluatable expression to be used with eval()
'single': Single executable statement to be used with exec
'exec': Group of executable statements to be used with exec


eval_code = compile('10200', '', 'eval')
print eval(eval_code)



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo Buildin Function
» Compile