#!/usr/bin/env python import time try: while 1: time.sleep( 0.5) print( "working") except KeyboardInterrupt: print( "interrupted")