Contact: aviboots(AT)netvision.net.il
41,605 questions
54,253 answers
573 users
# compile(source, filename, mode, flag, dont_inherit, optimize) c = compile('print(100), print(333)', "test", "eval") exec(c) ''' run: 100 333 '''