demo_ref_compile.py:
mytext = 'print(55)' x = compile('mytext', 'test', 'eval') exec(x)
C:\Users\My Name>python demo_compile.py
55