Hi, All,
'exec')
hello everyone, how are you?
<code object ? at 0x8122d70, file "<string>", line 1>
how to print the code object ?
like the one on .pyc
Regards
LG
>>>code = compile('print "hello everyone, how are you? "', '<string>',
>>>exec code
>>>print code
how to print the code object ?
like the one on .pyc
Regards
LG
Comment