I have a program, a part of which executes a loop. During the execution of this loop, there are exceptions. Obviously, I would like my program to run without errors, but for
while True: try: # Do your stuff except Exception, e: print "Something happened: %s" % e