Buildin Function Python Tutorial

exec """
x = 0
print  'x is currently:', x
while  x < 5:
    x += 1
    print 'incrementing x to:', x
"""