if int(time.strftime(%H)) > 4:
                some end the program command
        else:
                continue

what would be best used here ?


I would use raise SystemExit

But another possibility is:
import sys then to exit sys.exit()
--
There are 10 different types of people in the world.
Those who understand binary and those who don't.
_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to