Is there such a thing in python as an 'execute' statement that I can use similarly to the way I have below?
statement='print "hello world"'
def loop(statement):
for i in range(100):
for j in range(100):
execute statement
loop(statement)