demo_ref_compile2.py:
mytext = 'print(55)\nprint(88)' x = compile('mytext', 'test', 'exec') exec(x)
C:\Users\My Name>python demo_compile2.py
55
88