cara menjalankan string seperti kode normal dalam python

prog = 'print("The sum of 5 and 10 is", (5+10))'
exec(prog)
Micah M