spacepaste

  1.  
  2. DEBUG = False
  3. def log(message, *args):
  4. if DEBUG:
  5. print message.format(*args)
  6. def main():
  7. x = 0
  8. for i in range(2000):
  9. x += i
  10. log('hello', x*100)
  11. main()
  12.