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